Forum Discussion
BeastHouse
3 years agoFrequent Visitor
IF/OR Formula Help
Hi, trying to calculate an exchange rate used in a procurement data set. The below formula is throwing the error DAX comparison operations do not support comparing values of type Number with values o...
- 3 years ago
hi BeastHouse
try like:
Exchange Rate =IF('Stock Orders'[Exchange Rate For Report Estimates]=0,1,'Stock Orders'[Exchange Rate For Report Estimates])DAX take 0 and blank as the same.
FreemanZ
3 years agoSuper User
hi BeastHouse
try like:
Exchange Rate =
IF(
'Stock Orders'[Exchange Rate For Report Estimates]=0,
1,
'Stock Orders'[Exchange Rate For Report Estimates]
)
DAX take 0 and blank as the same.
BeastHouse
3 years agoFrequent Visitor
I think this could be the simple way of going about it! I am trying to transfer from Excel to Power Bi, so struggle with translating some of the formulas in the existing database. Thanks a lot.