Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?