Help

Result type is not a number or a date

2698 5
cancel
Showing results for 
Search instead for 
Did you mean: 
Erik_Koster
4 - Data Explorer
4 - Data Explorer

I have added a formula IF({Töö sisu} = “Hooldus”, “17”,IF({Töö sisu} = “Transport”, “7”, “”)) and the result is not a number so I cant format it nor can I use sum function. I need the 7 to be 7€ so I can count the sum.

5 Replies 5

Don’t use ", that is making the number to be a string. Also, you don’t need the second IF.

Dean_Arnold
7 - App Architect
7 - App Architect

Screenshot 2020-04-29 at 2.29.11 PM

Same problem here, but I’m not wrapping numbers in “”.

Dean_Arnold
7 - App Architect
7 - App Architect

Here’s my formula:
IF(ItemPriceUSD>0,ItemPriceUSD1)&IF(ItemPriceCNY>0,ItemPriceCNYExRateCNY)

There are no " in my formula, and all the fields used in the formula are numbers.

Screenshot 2020-05-01 at 2.54.22 PM

I need access to number formatting for the formulated number, but I still keep getting the “Your result type is not a number” message.

Is this a bug or a feature?
@Elias_Gomez_Sainz ?

The & is making it a string, I think. You want to concatenate 2 prices? Or you want to include 2 conditions? You can use an AND() to use several conditions in an IF().

Dean_Arnold
7 - App Architect
7 - App Architect

Spot on!

The & was making it a string.

I changed the formula to a Nested IF statement and the number formatting options returned.