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
D3K
Advocate II
Advocate II

Using a few selections while modelling

Hello everyone!

 

Will appreciate any help if it's even possible to solve the question

 

I'm trying to make a model, which will show, how would change the final cost of a dish after changing of the cost of some of it's ingredients.

 

1. I have a list of dishes (burgers), each of those burgers is consist of some ingredients, sometimes ingredients are unique, sometimes - not. Cost of the burger is calculated as a sum of costs of it's ingredients.

2. Also I have a list, where shown, which and how many ingredients are in particular burger.

3. And one more list of all ingredients with it's cost for 1 piece

 

The problem is that I need to have an opportunity to change cost for a several ingredients separately at one time. For example, for onion +10%, for bread +3% and so on.

 

To be able to choose different ingredients I've made a few supported blocks: green, meat, bread, sauce, other. And one supported table of all ingredients together, called "Filter Cost of ingredients". There no relations between them. 

 

As I see the further process, I need to choose some ingredients in each block and change the cost via What-If parameter. After that need to get changed cost of particular ingredient (cost for which was changed) into the full table of ingredients (step 1 on screenshot). And if ingredient is not selected and cost of it is not changed, so in this column we need to note it's standart cost. So after step 1 we have a table with one column (measure) with changed costs and standart costs.


InkedScreenshot Share_LI.jpg

 

At step 2 I will compare Fact costs with Model costs. And at step 3 I will collect Fact and Model cost of every burger and will be able to compare it.

 

So, the main problem is how to achieve step 1 is working. I don't even know is it possible and will be glad to any thoughts and help.

 

Here is the link to .pbix file

 

https://www.dropbox.com/s/kubatkmky6kh7di/Share_Model_2.pbix?dl=0

 

Thanks!

 

1 ACCEPTED SOLUTION

Hi @D3K

 

you can download the pbix file here: https://1drv.ms/u/s!AiiWkkwHZChHjx6QGS8z8QHzSMGu

 

also if you click on the link in my first post you can check online the new report

 


 


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


Proud to be a Datanaut!  

View solution in original post

13 REPLIES 13
LivioLanzo
Solution Sage
Solution Sage

Hi @D3K

 

please see below my results and check if they are correct.

 

I will be able to share the pbix with you in 1 hour

 

2018-10-10_16-12-20.jpg

 


 


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


Proud to be a Datanaut!  

Hi @LivioLanzo

 

Got you! I hope it's correct on the screenshot 🙂

 

But want to pay your attention, that the main problem is that it's needed to be able choose 1 or 2 from the group. For example, change the cost only for Tomato from group Green.

 

Anyway, thanks a lot for your trying to help!

hI @D3K

 

at the moment what I have is that when you change the % change of Green Ingredients, the % change is applied to the price of all the ingredients marked as green?  am I correct?

 


 


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


Proud to be a Datanaut!  

@LivioLanzo

 

As the first step to the goal, I suppose, it's correct. But the main target is to be able to choose and change only Tomato in block Green and not to change Onion in the same block, for example.

 

Please feel free to ask if I've explained it easy to got.

LivioLanzo
Solution Sage
Solution Sage

Hi @D3K

 

Please check results of my file:

 

copy paste the below in your browser:

https://app.powerbi.com/view?r=eyJrIjoiNmZkNThkNzUtYWI0YS00MWIxLTllZjktODk1YmY3MTIxZWM5IiwidCI6IjRiMmQxZTZhLWZlZmMtNDFmMi04OTZiLWFkNWFjNTk0ZWJlOSIsImMiOjF9

 

i will upload the pbix in a couple of hours

 


 


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


Proud to be a Datanaut!  

@LivioLanzo

 

Firstly, I want to say, that your report looks great, even better than I've constructed in my mind as the final result! 

 

And it works almost perfect:

- costs for chosen ingredients changes for all other dishes

- and the cost of burger is also calculating correctly

 

Thanks!

 

But check it out to got what I'm trying to explain. Imagine that supplier increase price only for chicken, and the price for beef wasn't change. And we need to increase only cost for chicken and don't touch cost of the rest meat ingredients. And after that we'll see how is changing cost of burgers with chicken.

 

That's why I've separated ingredients for blocks: choose Chicken from Meat block and increase, choose Onion from Green block and change the cost. 

And I saw the possibility that when any block is filtered and one of it's ingredients is selected - to put changed value into the cost model column. But my knowledge in DAX is not enough to make it, that's why I'm here

 

Anyway I'm really impressed with the current result it's awesome 🙂

Hi @D3K

 

you can download the pbix file here: https://1drv.ms/u/s!AiiWkkwHZChHjx6QGS8z8QHzSMGu

 

also if you click on the link in my first post you can check online the new report

 


 


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


Proud to be a Datanaut!  

@LivioLanzo

 

Want to thank you one more time for even noted hints in DAX formulas Smiley Happy

No problem! Actually you can use this formula as well as it is more optimized and runs a bit faster:

 

 

Cost of Burger =
VAR IsIngredientFiltered =
    ISFILTERED ( ApplyPercentageIngredients[Ingredient Name] )
RETURN
    SUMX (
        BurgersProducts,
        -- get ingredient cost
        VAR IngredientCost =
            RELATED ( Ingredients[Cost] )
        VAR PercToApply =
            IF (
                IsIngredientFiltered,
                -- check if any ingredient is filtered
                VAR GroupName =
                    RELATED ( Ingredients[Group Name] ) -- get group name
                VAR IngredientName =
                    RELATED ( Ingredients[Ingredient Name] ) -- get ingredient name
                RETURN
                    IF (
                        -- test is current ingredient is included in filter
                        CONTAINS (
                            VALUES ( ApplyPercentageIngredients[Ingredient Name] ),
                            ApplyPercentageIngredients[Ingredient Name], IngredientName
                        ),
                        SWITCH (
                            GroupName,
                            "Green", [% Green Cost Change Value],
                            "Meat", [% Meat Cost Change Value],
                            "Bread", [% Bread Cost Change Value],
                            "Sauce", [% Sauce Cost Change Value],
                            "Other", [% Other Cost Change Value],
                            0
                        ),
                        0
                    ),
                0
            )
        RETURN
            [Quantity of ingredients] * IngredientCost
                * ( 1 + PercToApply )
    )

 


 


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


Proud to be a Datanaut!  

@LivioLanzo

 

Got you! Thanks, will try to implement it into the report 🙂

@LivioLanzo

 

It's absolutely AWESOME! I can't believe!

My knowledges definately wasn't enough for that system 🙂

 

THANK YOU so much! Great!

LivioLanzo
Solution Sage
Solution Sage

Hi @D3K

 

please see my solution here: 

https://app.powerbi.com/view?r=eyJrIjoiNmZkNThkNzUtYWI0YS00MWIxLTllZjktODk1YmY3MTIxZWM5IiwidCI6IjRiM...

 

check the results on your side, I will be able to share the pbix in a couple of hours

 

 

 


 


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


Proud to be a Datanaut!  

LivioLanzo
Solution Sage
Solution Sage

HI @D3K

 

Please see my solution here: 

https://app.powerbi.com/view?r=eyJrIjoiNmZkNThkNzUtYWI0YS00MWIxLTllZjktODk1YmY3MTIxZWM5IiwidCI6IjRiM...

 

 

Check if the results are correct on your side. I will be able to upload and share with you the .pbix file in a couple of hours

 

 

 

 

 

 

 

 


 


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


Proud to be a Datanaut!  

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.