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
Anonymous
Not applicable

measure that will calculate by end user input

hi guys.. 

 

i have a table like this, where I have different types of investment portfolios that i would like to aply by customer. 

 

 

Customer typePortfolio 1Portfolio 2Portfolio 3Portfolio 4
A0%25%40%35%
B25%50%25%0%
C33%33%33%1%

D

22%22%45%

11%

 

and then i would like to have a filter or input that the end user will use, where he will select the amount that he would like to invest. 

 

 Investment  
 $                100
 $                200
 $                300
 $                400
 $                500
 $  600
 $  700
 $  800
 $  900
 $ 1,000

 

I would like to have a calculation that i could use then in a graph or table where based on two selections the measure will be dynamicaly calculated. 

 

first i select the type of customer, which will distinguish the split of the funds into all portfolious 

second based on the investment it will split the amount according to the percentage.. 

 

so lets say i will select customer type A (in a slicer or filter) and then i select investment 1000 .. 

then i would like to see outcome like this:

 

customer Type  Portfolio 1    Portfolio 2    Portfolio 3     Portfolio 4

 A                          $0                $250            $400              $250

 

i am open try any posible suggestions 

 

Thank you very much 

 

miba

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Example of one measure

 

Portfolio1 inv = SELECTEDVALUE(tableInvestment[Investment]) * SELECTEDVALUE(tabletype[CustomerType])

 

this measure will take the current selected value of the two tables and calculate the multiplication.

Then you repeat for the other 4 types of portfoliio and put in a graph.

 

 

View solution in original post

3 REPLIES 3
v-danhe-msft
Employee
Employee

Hi @Anonymous,

Based on my test, you could try to create a parameter:

1.PNG

Unpivot your Portfolio columns in query editor:

1.PNG

Apply it and create a measure:

Measure = [Parameter Value]*CALCULATE(SUM(Table1[Value]))

Create a metrix and add related field, now you could see the 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.
Anonymous
Not applicable

Example of one measure

 

Portfolio1 inv = SELECTEDVALUE(tableInvestment[Investment]) * SELECTEDVALUE(tabletype[CustomerType])

 

this measure will take the current selected value of the two tables and calculate the multiplication.

Then you repeat for the other 4 types of portfoliio and put in a graph.

 

 

Anonymous
Not applicable

@Anonymous  good try but that doestn work 

 

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.