Forum Discussion
Anonymous
8 years agoNot applicable
conversion ratio
Hello to all of you! I got 1 table with my quotes and 1 table with my orders. I would like to have my conversion rate (how many quotes I converte into an order). Quotes Date Docum...
Zubair_Muhammad
8 years agoCommunity Champion
Hi Anonymous
Try this...Add a new Column to your Orders Table "Quote Date".....using RELATED or LOOKUPVALUE function in DAX....
Then you can use this MEASURE to get the conversion ratio
Conversion Ratio =
DIVIDE (
CALCULATE (
COUNT ( Orders[Quote N°] ),
FILTER (
ALL ( Orders ),
Orders[Quote N°] <> "None"
&& MONTH ( Orders[Quote Date] ) = MONTH ( Orders[Date ] )
&& YEAR ( Orders[Quote Date] ) = YEAR ( Orders[Date ] )
)
),
CALCULATE ( COUNT ( Orders[Document N°] ), Orders[Quote N°] <> "None" )
)Anonymous
8 years agoNot applicable
I got a Date Table linked with the tables. Maybe it will be easier?