Hi All,
I want to convert a number in crore format.
My basic problem is, I am using a custome format:
#,##0.00,,,%;
Here main task is done by ,,,%.
Each comma (,) is dividing a number by 1000. Thus three commas are dividing a number by 10^9 digits.
But I need number in crore (i.e. 10^7), Thus we have used this percent sign (%).
Here I can get required Value but appended percent (%) to it. I can temporary hide this using wrap text.
But I need exact solution to convert a number in crore.
Can anybody help me regarding the same.