Forum Discussion
AlejandroPCar
9 years agoHelper IV
DIVIDE does not show the value
Hi! I have these problem. Im using DIVIDE and these is the result: First I have two values for Eslovaquia in two dates and the result is right. But in the second, I have only on...
- 9 years ago
Hi AlejandroPCar,
Did you mean the blanks? Maybe you could try to add one more parameter to "divide".
Exportaciones Variacion % = DIVIDE ( [Diferencia]; [Exportaciones II]; 0 )
Best Regards!
Dale
v-jiascu-msft
9 years agoMicrosoft Employee
Hi AlejandroPCar,
Would you like to try this? Maybe it could work.
Exportaciones Variacion % =
IF (
[Exportaciones I] = 0;
IF ( [Exportaciones II] = 0; BLANK (); -1 );
IF (
[Exportaciones II] = 0;
BLANK ();
DIVIDE ( [Exportaciones I]; [Exportaciones II]; 0 ) - 1
)
)Best Regards!
Dale
- AlejandroPCar9 years agoHelper IV
Hi,
Thanks for help me, but it dosent works, the result its the same I had.
- Anonymous9 years agoNot applicable
- AlejandroPCar9 years agoHelper IV
Hi, I hope it can help.