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
andrewb95
Helper II
Helper II

Percentage of Activations to Signup

I am attempting to create a view in Power BI which shows the % of Activations which occur to signups.

  • My data is sorted by year/month and I would like to see the % change. 
  • I have the fields for:
    • Total Signups
    • Total Activations
    • Date of Signup 

I have below added a small image from Excel displaying how ideally my data would be shown (the red segment showing % change). Power BI Community.PNG

Can someone please advise how I can show this (create this measure) for use within a matrix table? 

1 ACCEPTED SOLUTION
v-danhe-msft
Employee
Employee

Hi @andrewb95 ,

Based on my test, you could refer to using divide function:

https://docs.microsoft.com/en-us/dax/divide-function-dax

And with below measure:

Measure = DIVIDE(CALCULATE(SUM(Table1[Activation])),CALCULATE(SUM(Table1[Sgnups])))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

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

View solution in original post

2 REPLIES 2
v-danhe-msft
Employee
Employee

Hi @andrewb95 ,

Based on my test, you could refer to using divide function:

https://docs.microsoft.com/en-us/dax/divide-function-dax

And with below measure:

Measure = DIVIDE(CALCULATE(SUM(Table1[Activation])),CALCULATE(SUM(Table1[Sgnups])))

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
kcantor
Community Champion
Community Champion

@andrewb95 

You would create a measure using the Divide function.

First, make sure you have measures for the Activations and Signups using SUM

Activations = SUM(TableName[Activation])

Signups = SUM(TableName[Signups])

Then, Create your % measure referencing those other measures instead of columns.

% Activations to Signups = DIVIDE([Activations], [Signups])

Then format as a %.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.