Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi all,
the search and all topics around did not help me to get my job done.
I'm trying to use PBI as a Configurator.
https://i.ibb.co/C0bKD3T/2020-09-15-09-49-22-Window.png
What I did - I added 3 different parameter for selecting the qty and 3 slicer from the same column (CFN) and 3 tables which show the selection in CFN slicer the according information and multiplied by the qty. Within the table I'm doing some calculations and get to a final net. Each table has their own measure for the columns, thus every Final net is a stand alone measure based on the calculations in the table.
to achieve that each slicer (CFN) reflects only the table next to it, I changed the interactions to not interact.
Now I come to my issue. I'd like to have a measure down below the table that shows me the sum of all 3 stand alone final net measure. How can i achieve that?
Many thanks for your help in advance,
Michael
Solved! Go to Solution.
Hi @Micha05 ,
Edit interactions only affect corresponding visuals. In your scenario you will need to create a slicer table for each visual.
Best Regards,
Jay
@Micha05 , In that case, you have two create three measures like
measure =
calculate([measure], filter(Table, Table[col1] = "ABC"))
measure =
calculate([measure], filter(Table, Table[col1] = "ABC"), removefilters(Table[col1]))
Thanks @amitchandak for your quick reply and approach. To be sure if I get your point right. The slicers called 'CFN' are highly dynamic. there are 100+ values available which users could select, but it seems in your measures I need to fix a value > = "ABC".
There are already 3 measure for each individual net for the 3 tables but what I'm wondering is how I can I tell the new measure it should sum up the 3 final net regardless the interactions.
Best,
Michael
@Micha05 , if you want dynamic, then you need to have independent slicers. Two independent slicers at least
example
// removing default slicer and using second slicer
measure =
calculate([measure], filter(Table, Table[col1] = selectedvalue(Slicer2[Col1])), removefilters(Table[col1]))
measure =
calculate([measure], filter(Table, Table[col1] in values(Slicer2[Col1])), removefilters(Table[col1]))
Does 2 independet filters mean that they also need two different columns? Or could the 2 slicers based on the same column from the same table only with disabled interactions?
Hi @Micha05 ,
Edit interactions only affect corresponding visuals. In your scenario you will need to create a slicer table for each visual.
Best Regards,
Jay
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 51 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 65 | |
| 39 | |
| 33 | |
| 23 |