Working with Math column to create a simple Sum I discovered this rare problem when some cells are blank (empty). My formula is: Total= Qty1*Price1+ Qty2*Price2+ Qty3*Price3
Everything is fine when all cells have some value but, if there is (are) some blank cell(s) in the formula, the result is completely crazy and funny. See my screenshot please
The workaround could be to use the What-If-Else tool but I will have to create more new columns and the APP would load more unnecessary data for this issue. My real APP and formula has 16 tags (variables) and donât want to create these dummy variables by this bug.
How much will you last to fix it? I can wait 1-2 days more.
Iâd rather this than create 16 new IF-Then-Else columns and complicate my APP. I try to keep it light and simple.
I think we have an original problemâs new brother here:
If I try to sum these columns and some ones are empty (blank), the result is wrong
Qt1*Pr1 + Qt2*Pr2 + 1
this example can guide you to understand the cases with problems:
the trick works:
IF {MyColumn} is empty THEN 0 ELSE {MyColumn}
but I have more than 10 columns and don´t want to duplicate these data dummy every time I find this case. Can it can be fixed and avoid the workaround?