Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
manideep547
Helper III
Helper III

Conversions %

Hi all,
I have a table  with Id, Destination, date columns 
I created three tables destination1 ,destination2 ,Ids
Destination1= SUMMARIZE(FILTER('Table,'Table'[DESTINATION]<>blank()),'Table'[DESTINATION])
Destination2=Destination1
ID = SUMMARIZE(FILTER('Table','Table'[ Id]<>blank()),'Table'[Id])
And my model is 
Destination1[Destination] to Table[Destination]  One too many and cross filter direction single and Active relationships
Destination2[Destination] toTable[Destination]  One too many and cross filter direction single and Inactive relationships
Table[Id] toID[id]  One too many and cross filter direction single and Active relationships
And below measure gives me the Cross destinaion visits distnctcount 
That means 

Cross destination =
CALCULATE(
DISTINCTCOUNT('Table'[Id]),
CALCULATETABLE(
SUMMARIZE(Table',' Table'[Id]),
ALL(Persona1),
USERELATIONSHIP('destination2'[destination], Table'[destination])
)
)+0
A1(Destination)count=2
A2(Destination)count=2
Destination1 table placed as the slicer
and Cross destinaion measure is filter by destination2 table in filter panel (card)

count 1 is one customer are common in both destination 
Those customers who are in A1 Destination and also in A2 Destination, count=1
Now I need the Conversions % that means numbers of customers who are converted to another Destination from A1 
total number of customers in A1 destination =2
Number of customers converted to another destinations is 1
Total number of customers in selected destinations is 5 
I need (1/5)*100=20%
Calculation (1/5)*100 =20%

YOU CAN FIND MY .pdix file  
https://drive.google.com/file/d/1pwosx8F6-8e-xVxVNAltx1cgeF55Pvsj/view

 

can any help me out, I need to submit it today please

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @manideep547 ,

 

You can try EXCEPT() function.

Measure = 
CALCULATE(
    DISTINCTCOUNT('Table'[ID]),
    CALCULATETABLE(
        SUMMARIZE('Table', 'Table'[ID]),
        EXCEPT(ALL(Destination1),ALLSELECTED(Destination1)),
        USERELATIONSHIP(Destination2[Destination], 'Table'[Destination])
    )
)+0

 Then use the formula below to calculate percentage.

Measure 2 = FORMAT([Measure]/COUNTROWS(ALL('Table')),"percent")

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

1 REPLY 1
v-jayw-msft
Community Support
Community Support

Hi @manideep547 ,

 

You can try EXCEPT() function.

Measure = 
CALCULATE(
    DISTINCTCOUNT('Table'[ID]),
    CALCULATETABLE(
        SUMMARIZE('Table', 'Table'[ID]),
        EXCEPT(ALL(Destination1),ALLSELECTED(Destination1)),
        USERELATIONSHIP(Destination2[Destination], 'Table'[Destination])
    )
)+0

 Then use the formula below to calculate percentage.

Measure 2 = FORMAT([Measure]/COUNTROWS(ALL('Table')),"percent")

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.