Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
HI I am creating a custom column that will expand the rows based on the Denied from (Start) and Thru(Stop).
{Number.From([DeniedFrom])..Number.From([DeniedThru]-#duration(1,0,0,0))}
I use the above formula. However if the Denied From and Thru Date are the same I get a null value when I expand the rows. I want it to equal the Denied From Value.
Solved! Go to Solution.
Hi, @Anonymous
You can add an IF condition,like:
if List.Count({Number.From([DeniedFrom])..Number.From([DeniedThru]-#duration(1,0,0,0))})=0
then {[DeniedFrom]}
else {Number.From([DeniedFrom])..Number.From([DeniedThru]-#duration(1,0,0,0))})
Result:
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can add an IF condition,like:
if List.Count({Number.From([DeniedFrom])..Number.From([DeniedThru]-#duration(1,0,0,0))})=0
then {[DeniedFrom]}
else {Number.From([DeniedFrom])..Number.From([DeniedThru]-#duration(1,0,0,0))})
Result:
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , are these dates, then you need List.dates
refer if needed
Yes they are dates. What would the formula be?
User | Count |
---|---|
8 | |
6 | |
6 | |
5 | |
5 |
User | Count |
---|---|
9 | |
8 | |
6 | |
6 | |
6 |