The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |