Hi Chandoo, hope my note finds you well.
My question today has to do with something I have tried but can not find a way to resolve. I want to extract digits from a set of numbers (both negative or positive). For instance, take as an example the below set of amounts:
A) $12,340.67
B) $98,700.21
C) $-7,892,000.98
D) $2,000.23
E) $-70,201.16
I want to be able to extract (separately in various columns) the 1st, 2nd, 3rd digits before the period: A) 0,
A) 0 A) 4 A) 3, etc
B) 0 B) 0 B) 7, etc
C) 0 C) 0 C) 0, etc
D) 0 D) 0 D) 0, etc
E) 1 E) 0 E) 2, etc
I have started a formula =(MOD(A2,10^1)-MOD(A2,10^0))/(10^0) that seemed to work but the negative numbers are giving me a bit crazy. Is there a chance I can rely on your expertise? Any help will be greatly appreciated.
My question today has to do with something I have tried but can not find a way to resolve. I want to extract digits from a set of numbers (both negative or positive). For instance, take as an example the below set of amounts:
A) $12,340.67
B) $98,700.21
C) $-7,892,000.98
D) $2,000.23
E) $-70,201.16
I want to be able to extract (separately in various columns) the 1st, 2nd, 3rd digits before the period: A) 0,
A) 0 A) 4 A) 3, etc
B) 0 B) 0 B) 7, etc
C) 0 C) 0 C) 0, etc
D) 0 D) 0 D) 0, etc
E) 1 E) 0 E) 2, etc
I have started a formula =(MOD(A2,10^1)-MOD(A2,10^0))/(10^0) that seemed to work but the negative numbers are giving me a bit crazy. Is there a chance I can rely on your expertise? Any help will be greatly appreciated.