March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Solved! Go to Solution.
Hello @Anonymous
You may try this:
From the drop down option of ID column > Select Show items with no data
For this, I have created the calculated column as per your scenario:
Column =
VAR Col1 = IF(
ISBLANK(Sheet1[Date 1]) || ISBLANK(Sheet1[Date 2]),
BLANK(),
DATEDIFF(Sheet1[Date 1], Sheet1[Date 2],DAY)
)
VAR col2 = IF(
ISBLANK(Sheet1[Date 2]) || ISBLANK(Sheet1[Date 3]),
BLANK(),
DATEDIFF(Sheet1[Date 2], Sheet1[Date 3],DAY)
)
VAR Diff = IF(
ISBLANK(Col1) || ISBLANK(col2),
BLANK(),
Col1 - col2
)
RETURN
Diff
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
Hello @Anonymous
You may try this:
From the drop down option of ID column > Select Show items with no data
For this, I have created the calculated column as per your scenario:
Column =
VAR Col1 = IF(
ISBLANK(Sheet1[Date 1]) || ISBLANK(Sheet1[Date 2]),
BLANK(),
DATEDIFF(Sheet1[Date 1], Sheet1[Date 2],DAY)
)
VAR col2 = IF(
ISBLANK(Sheet1[Date 2]) || ISBLANK(Sheet1[Date 3]),
BLANK(),
DATEDIFF(Sheet1[Date 2], Sheet1[Date 3],DAY)
)
VAR Diff = IF(
ISBLANK(Col1) || ISBLANK(col2),
BLANK(),
Col1 - col2
)
RETURN
Diff
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
On the dimension you have used try
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |