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
Hi, how would correctly write out this logic please in dax?
If appname = "test" and appsource = blank and appdate < 12 January 2024 then "remove" else "keep"
Solved! Go to Solution.
Something like this:
IF (
TableName[appname] = "test" &&
ISBLANK ( TableName[appsource] ) &&
TableName[appdate] < DATE ( 2024, 1, 12 ),
"remove",
"keep"
)
Something like this:
IF (
TableName[appname] = "test" &&
ISBLANK ( TableName[appsource] ) &&
TableName[appdate] < DATE ( 2024, 1, 12 ),
"remove",
"keep"
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 137 | |
| 102 | |
| 71 | |
| 67 | |
| 65 |