Forum Discussion
Green_G
3 years agoFrequent Visitor
Sales Conversion
I have a table in the following format: ID Status 1ABC Quote 2ABC Sold 3XYZ Expired 4EFG Confirmed 5JKL Confirmed I want to calculate how may confirmed IDs there ar...
- 3 years ago
Here you are:
% Confirmed = DIVIDE ( CALCULATE ( COUNTROWS ( VALUES ( 'Table'[ID] ) ), KEEPFILTERS ( 'Table'[Status] = "Confirmed" ) ), COUNTROWS ( VALUES ( 'Table'[ID] ) ) )Selected confirmed percentage of all selected ID
Formatting as percentage is done in the Measuretools ribbon. You need to click on the Measre in the fields list to see that ribbon. You need to click on Data in View ribbon to see the fields list.
Martin_D
Solution Sage
3 years agoHere you are:
% Confirmed =
DIVIDE (
CALCULATE (
COUNTROWS ( VALUES ( 'Table'[ID] ) ),
KEEPFILTERS ( 'Table'[Status] = "Confirmed" )
),
COUNTROWS ( VALUES ( 'Table'[ID] ) )
)
Selected confirmed percentage of all selected ID
Formatting as percentage is done in the Measuretools ribbon. You need to click on the Measre in the fields list to see that ribbon. You need to click on Data in View ribbon to see the fields list.