How to convert String password to hash
First you need to convert all the password to hash password. then on the sheet use password_hash instead of password for set password.
Use magento core helper class for generate hash_password:
Mage::helper('core') ->getHash('YOUR_PASSWORD', Mage_Admin_Model_User::HASH_SALT_LENGTH);