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
Hello!
Sorry for the big post but there it goes...
I'm working in a report for what I use a disconnected table to dynamic select one or more calculated measures I have. Basically, I'm using the SWITCH function to build a measure that select these other calculated measures indexed in the disconnected table . It works fine for almost all purposes, except for creating a scatter chart that plots two derived measures based on the same disconnected table.
Let me try to be more specific:
In summary, I want to plot the relative deviation (measure: Selected_Measure_Dev%) in the X axis,the absolute deviation (measure: Selected_Measure_Dev) in the Y axis, and have have the 'Account' field from the disconnected table in the legend.
Please see the measures DAX formulas and disconnected table sample below:
Selected_Measure_Dev% = VAR MySelection = SELECTEDVALUE (dimAccMeasures[Measure Name (shy)];"Shy_NS (Dev %)" ) RETURN SUMX(dimAccMeasures; SWITCH ( TRUE (); MySelection = "Shy_NS (Dev %)"; [Shy_NS (Dev %)]; MySelection = "Shy_OI (Dev %)"; [Shy_OI (Dev %)]; MySelection = "Shy_SM (Dev %)"; [Shy_SM (Dev %)]; [Shy_NS (Dev %)]) )
Selected_Measure_Dev = VAR MySelection = SELECTEDVALUE (dimAccMeasures[Measure Name (shy)];"Shy_NS (Dev)" ) RETURN SUMX(dimAccMeasures; SWITCH ( TRUE (); MySelection = "Shy_NS (Dev)"; [Shy_NS (Dev)]; MySelection = "Shy_OI (Dev)"; [Shy_OI (Dev)]; MySelection = "Shy_SM (Dev)"; [Shy_SM (Dev)]; [Shy_NS (Dev)]) )
Shy_NS (Dev) = IF ( CONTAINS ( dimAccMeasures; dimAccMeasures[Measure Name (shy)]; "Shy_NS (Dev)" ); [Net Sales (Dev)]; BLANK () )
Net Sales (Dev) = ( [Net Sales (ACT+LE)] - [Net Sales (AP)] )
So when I create the scatter plot as described above, it shows only one data point, which is the default selection for the measures : [Shy_NS (Dev %);Shy_NS (Dev)] with the 'Net Sales' legend. This data point is fine and the numbers are correct, but the other accounts 'Order Intake' and 'Sales Margin are not showing. If I add the Index column to the details, no data points are shown whatsoever.
Now when performing some tests to understand what might be the issue, I tried creating some matrix table showing subtotals for different fields from the disconnected table. For some reason only the default measure aggregation is shown. Therefore I'm quite sure this is probably due to to an aggregation problem in this dynamic measure selection, but I cannot figure out a way to overcome this.
Please help!
Would love to recreate this but need some data that I can copy and paste. In general though, I've had issues trying to use measures with Scatter Plot visual. There are just weird limitations with that Scatter Plot visual.
Hello!
Sorry for the big post but there it goes...
I'm working in a report for what I use a disconnected table to dynamic select one or more calculated measures I have. Basically, I'm using the SWITCH function to build a measure that select these other calculated measures indexed in the disconnected table . It works fine for almost all purposes, except for creating a scatter chart that plots two derived measures based on the same disconnected table.
Let me try to be more specific:
In summary, I want to plot the relative deviation (measure: Selected_Measure_Dev%) in the X axis,the absolute deviation (measure: Selected_Measure_Dev) in the Y axis, and have have the 'Account' field from the disconnected table in the legend.
Please see the measures DAX formulas and disconnected table sample below:
Selected_Measure_Dev% = VAR MySelection = SELECTEDVALUE (dimAccMeasures[Measure Name (shy)];"Shy_NS (Dev %)" ) RETURN SUMX(dimAccMeasures; SWITCH ( TRUE (); MySelection = "Shy_NS (Dev %)"; [Shy_NS (Dev %)]; MySelection = "Shy_OI (Dev %)"; [Shy_OI (Dev %)]; MySelection = "Shy_SM (Dev %)"; [Shy_SM (Dev %)]; [Shy_NS (Dev %)]) )
Selected_Measure_Dev = VAR MySelection = SELECTEDVALUE (dimAccMeasures[Measure Name (shy)];"Shy_NS (Dev)" ) RETURN SUMX(dimAccMeasures; SWITCH ( TRUE (); MySelection = "Shy_NS (Dev)"; [Shy_NS (Dev)]; MySelection = "Shy_OI (Dev)"; [Shy_OI (Dev)]; MySelection = "Shy_SM (Dev)"; [Shy_SM (Dev)]; [Shy_NS (Dev)]) )
Shy_NS (Dev) = IF ( CONTAINS ( dimAccMeasures; dimAccMeasures[Measure Name (shy)]; "Shy_NS (Dev)" ); [Net Sales (Dev)]; BLANK () )
Net Sales (Dev) = ( [Net Sales (ACT+LE)] - [Net Sales (AP)] )
So when I create the scatter plot as described above, it shows only one data point, which is the default selection for the measures : [Shy_NS (Dev %);Shy_NS (Dev)] with the 'Net Sales' legend. This data point is fine and the numbers are correct, but the other accounts 'Order Intake' and 'Sales Margin are not showing. If I add the Index column to the details, no data points are shown whatsoever.
Now when performing some tests to understand what might be the issue, I tried creating some matrix table showing subtotals for different fields from the disconnected table. For some reason only the default measure aggregation is shown. Therefore I'm quite sure this is probably due to to an aggregation problem in this dynamic measure selection, but I cannot figure out a way to overcome this.
Please help!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
167 | |
147 | |
92 | |
70 | |
58 |