Link to home
Start Free TrialLog in
Avatar of BulldogMike
BulldogMikeFlag for United States of America

asked on

Number Manipulation - adding a space and two zeros at the end

Hi

I want to edit a number like this 21 25 00 10 in cell H11.  

If the this number is less than 10 digits long (or 14 digits with the spaces), I want to add a space and two zeros at the end of 21 25 00 10 to get 21 25 00 10 00.   Then, I want to store the new value in the cell H11 if possible or in another cell if not possible for reference later.

Which function or functions would I use to convert this number from 10 digits to 12 (or from 14 digits to 17 digits with the spaces)?

Thank you for looking at this question  

Mike
ASKER CERTIFIED SOLUTION
Avatar of Saqib Husain
Saqib Husain
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BulldogMike

ASKER

Thanks SSAQIBH

It works - If I want to make it conditional how would that be coded

IF A1 LEN <12, A1&RIGHT(" 00 00 00 00",14-LEN(A1)), false condition ?

Thanks
You do not have to use an if statement.

If the number is 14 it will take care of 14 as well as 11 as well as 7.
If the number is 17 it will take care of 17 as well as 14 as well as 11.
If the number is 21 it will take care of 21 as well as 17 as well as 14.
Yes but it adds extra zeros to the right which I don't know if that will work for my application.
I am accepting your 1st answer as the solution and awarding you the points

Thanks You

Mike
I've requested that this question be closed as follows:

Accepted answer: 0 points for BulldogMike's comment #37839671

for the following reason:

well reasoned response
Do not close this until you are satisfied with the answer. Take your time to check it out. Close it when you have 100% of what you need.
Your answer is acceptable - you got the 500 points and an A grade

Thank You

Mike
In that case: You did not accept my comment. You have accepted your own. You will have to go back and re-accept my comment.
A close request is pending on this answer
Re-accept
I've requested that this question be closed as follows:

Accepted answer: 0 points for BulldogMike's comment #37839671

for the following reason:

well reasoned answer
You again did not do it correctly. You should accept on the FIRST answer.