Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
In data table (I can do this in edit queries) I need an IF ELSE statement that looks at these two columns and;
IF NoTE = 1 and LastUpdate2Days = False then TRUE
Else FALSE
I can't figure out how to do this in the data table - create column.
Thanks !
Solved! Go to Solution.
Hi @granade1 ,
You can create a column using DAX as follows:
IF(Table1[Note] = 1 && Table1[LastUpdate2Days] = "False", "TRUE", "FALSE")
NOTE: Replace "Table1" in the above DAX with your table name
If the answer is useful please give Kudos or mark it as a solution if this works! 🙂
Thanks,
Pragati
Hi @granade1 ,
You can create a column using DAX as follows:
IF(Table1[Note] = 1 && Table1[LastUpdate2Days] = "False", "TRUE", "FALSE")
NOTE: Replace "Table1" in the above DAX with your table name
If the answer is useful please give Kudos or mark it as a solution if this works! 🙂
Thanks,
Pragati
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 19 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 20 | |
| 12 | |
| 10 |