Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Can someone helps assist a DAX calculation -
I'm trying to set a date range i.e. (06/01/2023 - May 30, 2024)
and also want to create another DAX calculation that includes date range above and include NULLS (non-exited clients)
Solved! Go to Solution.
Hi @mespiritu ,
I create a table as you mentioned.
Then I create a calculated column and here is the DAX code.
Column =
IF (
(
'Table'[Date] >= DATE ( 2023, 6, 1 )
&& 'Table'[Date] <= DATE ( 2024, 5, 30 )
)
&& ISBLANK ( 'Table'[ClientStatus] ),
"Done",
"Nulls"
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mespiritu ,
I create a table as you mentioned.
Then I create a calculated column and here is the DAX code.
Column =
IF (
(
'Table'[Date] >= DATE ( 2023, 6, 1 )
&& 'Table'[Date] <= DATE ( 2024, 5, 30 )
)
&& ISBLANK ( 'Table'[ClientStatus] ),
"Done",
"Nulls"
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |