Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi
I want to create the below table. I have created the date difference column but only want a number to appear under certain conditions. -
| End date | Status | Date difference |
| 01/12/2022 | Live | 43 |
| 01/10/2019 | Finished | |
| 25/06/2019 | Pause | |
| 01/12/2023 | Live | |
| 02/05/2023 | Live | |
| 10/10/2022 | Live | 95 |
I want the below to be blank -
Passed end date and pause = blank
Passed end date and finished = blank
Not passed end date = blank
Else show the date difference if Live and passed end date
hope that makes sense, any help is greatly appreciated
thanks
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Date diff CC =
VAR _today =
TODAY ()
RETURN
SWITCH (
TRUE (),
Data[End date] < _today
&& Data[Status] = "Pause", BLANK (),
Data[End date] < _today
&& Data[Status] = "Finished", BLANK (),
Data[End date] > _today, BLANK (),
Data[End date] < _today
&& Data[Status] = "Live", DATEDIFF ( Data[End date], _today, DAY )
)
@WJ876400 you can create a calc column like below.
have attached pbix file as well.
Proud to be a Super User!
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Date diff CC =
VAR _today =
TODAY ()
RETURN
SWITCH (
TRUE (),
Data[End date] < _today
&& Data[Status] = "Pause", BLANK (),
Data[End date] < _today
&& Data[Status] = "Finished", BLANK (),
Data[End date] > _today, BLANK (),
Data[End date] < _today
&& Data[Status] = "Live", DATEDIFF ( Data[End date], _today, DAY )
)
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 65 | |
| 31 | |
| 26 | |
| 26 |