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.
Hello Power BI community,
I have a table with bunch of columns. I have referenced my source and unpivoted them, and loaded into desktop to form a relation. I tried Tabe.Profile() in the query editor, but it is not dynamic. I want to show blank % for each column in a table visual and the values should be dynamic when a slicer selection is made. I went thru multiple trail and errors but still no luck.
I really appreicate if anyone can shoot some thoughts 🙂
Thanks in advance
Solved! Go to Solution.
@SriKandimalla - So, you should be able to do this:
Blank % Measure =
DIVIDE
COUNTROWS(FILTER('Table',ISBLANK([Column]) || [Column]="")),
COUNTROWS('Table')
)
@SriKandimalla - So, you should be able to do this:
Blank % Measure =
DIVIDE
COUNTROWS(FILTER('Table',ISBLANK([Column]) || [Column]="")),
COUNTROWS('Table')
)
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |