The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Solved! Go to Solution.
You could use this Dax function to make a new column.
IFERROR(VALUE(Table2[Column B]);1000000)
This will change all text values and errors to 1.000.000. (Feel free to chose another number, but it does have the be a number)
Then use the new column as replacement for the column B in your formula.
If you don't want a new column, you can type it all in one Formula.
IF(Table2[Column A]="No" && IFERROR(VALUE(Table2[Column B]);1000000)<5;"Yes";"No")
Hope this will help. 🙂
You could use this Dax function to make a new column.
IFERROR(VALUE(Table2[Column B]);1000000)
This will change all text values and errors to 1.000.000. (Feel free to chose another number, but it does have the be a number)
Then use the new column as replacement for the column B in your formula.
If you don't want a new column, you can type it all in one Formula.
IF(Table2[Column A]="No" && IFERROR(VALUE(Table2[Column B]);1000000)<5;"Yes";"No")
Hope this will help. 🙂