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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello Experts,
I am beginner to Power BI and need help on dates. My requirement is like below. I have dates columns and need percentage column based on dates populated / available in column.
Please help.
| column1 | column2 | column3 | column4 | column5 | column6 | requirement |
| A | B | 7/5/2021 | 7/15/2021 | 7/31/2021 | 8/5/2021 | 100% ( I need here 100% if all dates are populated) |
| C | D | 7/5/2021 | 7/15/2021 | 7/31/2021 | 75% (I need here 75% if column 3 to column 5 are populated) | |
| E | F | 7/5/2021 | 7/15/2021 | 50% (I need here 50% if column 3 and column 4 are populated) |
Solved! Go to Solution.
@Anonymous Maybe:
Column =
VAR __Table = { [Column3], [Column4], [Column5], [Column6] }
RETURN
COUNTROWS(FILTER(__Table,[Value]<>BLANK()))/4
Might consider unpivoting your date columns.
@Anonymous Maybe:
Column =
VAR __Table = { [Column3], [Column4], [Column5], [Column6] }
RETURN
COUNTROWS(FILTER(__Table,[Value]<>BLANK()))/4
Might consider unpivoting your date columns.
Thank you so much Greg.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |