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
Can anyone help me in replicating the below formula from tableau in power bi :
IF ISNULL ([Data Lag]) THEN 'NO COLOR'
ELSEIF [Secondary Data Source] = 'NielsenDARCampaignMonthly' THEN
IF DATEDIFF('month',[Last Data Date], TODAY()) >=2 AND DATEDIFF('day',DATETRUNC('month',TODAY()),TODAY() ) >= 14 THEN 'RED'
ELSE 'GREEN' END
ELSEIF [Data Lag] >= 3 THEN 'RED'
ELSEIF [Data Lag] = 2 THEN 'YELLOW'
ELSEIF [Data Lag] < 2 THEN 'GREEN'
END
Any suggestions?
Solved! Go to Solution.
Hi @UditJ
You can refer to the following calculated column
Column =
SWITCH (
TRUE (),
[Data Lag] = BLANK (),
IF (
[Secondary Data Source] = "NielsenDARCampaignMonthly",
IF (
DATEDIFF ( [Last Data Date], TODAY (), DAY ) >= 2
&& DATEDIFF ( EOMONTH ( TODAY (), -1 ) + 1, TODAY (), DAY ) >= 14,
"RED",
"GREEN"
),
"NO COLOR"
),
[Data Lag] >= 3, "RED",
[Data Lag] = 2, "YELLOW",
[Data Lag] < 2, "GREEN"
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UditJ
You can refer to the following calculated column
Column =
SWITCH (
TRUE (),
[Data Lag] = BLANK (),
IF (
[Secondary Data Source] = "NielsenDARCampaignMonthly",
IF (
DATEDIFF ( [Last Data Date], TODAY (), DAY ) >= 2
&& DATEDIFF ( EOMONTH ( TODAY (), -1 ) + 1, TODAY (), DAY ) >= 14,
"RED",
"GREEN"
),
"NO COLOR"
),
[Data Lag] >= 3, "RED",
[Data Lag] = 2, "YELLOW",
[Data Lag] < 2, "GREEN"
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 35 | |
| 34 | |
| 27 |
| User | Count |
|---|---|
| 136 | |
| 99 | |
| 73 | |
| 66 | |
| 65 |