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 August 31st. Request your voucher.
Hi All,
I'm having trouble creating a measure and hoping you can help find a solution
I have 1 column called "Referred Claim to Underwriters"
There are 2 values in the column, "N" and "Y"
I want to show in a Card visual to show what % of the total count is "N"
What formula should i use in my measure?
Many thanks in Advance
Jay
Solved! Go to Solution.
Hi,
Plesae try something like below.
Ratio measure: =
DIVIDE (
CALCULATE ( COUNTROWS ( TableName ), TableName[ColumnName] = "N" ),
COUNTROWS ( TableName )
)
Hi,
Plesae try something like below.
Ratio measure: =
DIVIDE (
CALCULATE ( COUNTROWS ( TableName ), TableName[ColumnName] = "N" ),
COUNTROWS ( TableName )
)
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
22 | |
14 | |
14 | |
9 | |
7 |