The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. 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 |
---|---|
15 | |
13 | |
9 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
9 | |
5 |