Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 8 | |
| 7 |