March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I would like to create a measrue that will show the average price in specific way in line chart.
I have DIM Container table with ISO Code and I have Fact Table with Price per day and Isocode.
I would like to put this measure in line chart with the following condition
if nothing is selected show one line as an total average price for all isocodes but when one or multiple isocodes are selected in slicer i want each of the isocodes to be displayed with individual line in the graph
i tried something like this
Dynamic AVG Price=
hey @OwenAuger thanx for quick respond.. the solution looks great but I think its not possible with Direct Query... because of the creation of field parameter which is not supported for DQ
Hi again @buchta
Even if you have tables with partitions with DirectQuery storage mode, you should still be able to create field parameters (which are calculated tables with Import storage mode). Also if you're using composite models on Power BI or Analysis Services then you should definitely be able to create/use field parameters (in the local model).
I just tested this myself with a simple model with DirectQuery connection to SQL Server and added a field parameter.
Could you clarify which sources you are connecting to with DirectQuery and confirm whether Modeling > New Parameter > Fields is available when the model is open in Power BI Desktop?
Regards,
Owen
Hi @buchta
You can use a field parameter in the legend field of the visual, combined with a measure to filter it appropriately for the visual, so that it's filtered to "ISO Code" if ISO Code is filtered, otherwise filtered to "nothing". Similar to the method described here.
I have attached a sample PBIX to show how this works.
Steps I followed to set this up:
1. Create a field parameter Legend Field Parameter containing the ISO Code column, then edit the DAX expression to add an item named "BLANK" which does not have a valid field reference.
Legend Field Parameter =
{
( "ISO Code", NAMEOF ( 'DIM Container'[ISO Code] ), 0 ),
( "BLANK", "BLANK", 1 )
}
2. Create a measure called Legend flag. This measure returns 1 if the current field parameter should be used, otherwise 0.
Legend Flag =
VAR CurrentField =
MAX ( 'Legend Field Parameter'[Legend Field Parameter] ) -- Assume single selection
VAR ResultBoolean =
IF (
ISFILTERED ( 'DIM Container'[ISO Code] ),
CurrentField = "ISO Code",
CurrentField = "BLANK"
)
VAR Result =
INT ( ResultBoolean ) -- Convert to 0/1
RETURN
Result
3. Create a visual containing 'Legend Field Parameter'[Legend Field Parameter] as the Legend field, and apply a Top N visual-level filter on Legend Field Parameter, set to "Top 1 by Legend Flag":
3. Now when the ISO column is filtered, the ISO code is used as the Legend field, otherwise there is no legend:
You can adjust the logic within the Legend Flag as needed to apply different conditions.
Does something like this work for you?
Regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |