Dear Profs and colleagues,
I am going to sum up all values in one variable,total_sale. I used this code to reach the accumulated amount.
The variable is firms sales so the quantities are massive. The state says that the final accumulation is -81294 628288651264 - but I am sure that it's more than this amount, I guess after some limited number the state does not add more values. Am I right? If so, what's the solution to reach the real number?
Thank you for your cooperation.
Cheers,
Paris
I am going to sum up all values in one variable,total_sale. I used this code to reach the accumulated amount.
Code:
egen sum_sale= total(SV606501)
Code:
* Example generated by -dataex-. For more info, type help dataex clear input double total_sale float sum_sale 51892 628288651264 538892 628288651264 96788 628288651264 0 628288651264 0 628288651264 9112 628288651264 2380 628288651264 0 628288651264 31511 628288651264 152561 628288651264 0 628288651264 2829 628288651264 0 628288651264 81294 628288651264 0 628288651264 89601 628288651264 119800 628288651264 281376 628288651264 125084 628288651264
Thank you for your cooperation.
Cheers,
Paris
Comment