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
Saloni_Gupta
Helper I
Helper I

How to compare the values in two Summarize tables

Hi All,

I have a requirement to create histograms and this is the dax that I am using to create the x-axis in a table.

var _t = SUMMARIZE( 'DimTable' ,'DimTable'[Client] , "sumvarianceclient" , Round([Variance to Budget - Revenue ($)],0))
var _p = SUMMARIZE( 'DimTable' ,'DimTable'[Product] , "sumvarianceproduct" , Round([Variance to Budget - Revenue ($)],0))
var _max_value = MAXX(_t,[sumvarianceclient])
var _min_value =  MINX(_p,[sumvarianceproduct])
return
GENERATESERIES(_min_value,_max_value,986100.509)
Saloni_Gupta_0-1712096449541.png

 

But I want to first compare the max and min values from both the tables (_t and _p) and then generateseriesaccordingly. For e.g.
Saloni_Gupta_1-1712095597513.png

I basically want to create this series in one table/dax so that I dont have to show different x-axis (one when Group By Client and when one Grouped by Product.) and I can show the same x-axis to create bins for both Client and Product.

Can you please help me change the var _max_value and var _min_value to compare the values from both the tables and then give the min or max value? Or if there is any other way to achieve this requirement?
Let me know if you require more information.

Thanks in Advance!

1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

Hi @Saloni_Gupta ,

 

Try to modify your formula like below:

vkongfanfmsft_1-1712111575981.pngvkongfanfmsft_2-1712111589616.png

result_ = 
VAR _max_value_t =
    MAXX ( _t, [ByClinet] )
VAR _max_value_p =
    MAXX ( _p, [ByProduct] )
VAR _max_value =
    MAX ( _max_value_t, _max_value_p )
VAR _min_value_t =
    MINX ( _t, [ByClinet] )
VAR _min_value_p =
    MINX ( _p, [ByProduct] )
VAR _min_value =
    MIN ( _min_value_t, _min_value_p )
RETURN
    GENERATESERIES ( _min_value, _max_value )

vkongfanfmsft_0-1712111554101.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-kongfanf-msft
Community Support
Community Support

Hi @Saloni_Gupta ,

 

Try to modify your formula like below:

vkongfanfmsft_1-1712111575981.pngvkongfanfmsft_2-1712111589616.png

result_ = 
VAR _max_value_t =
    MAXX ( _t, [ByClinet] )
VAR _max_value_p =
    MAXX ( _p, [ByProduct] )
VAR _max_value =
    MAX ( _max_value_t, _max_value_p )
VAR _min_value_t =
    MINX ( _t, [ByClinet] )
VAR _min_value_p =
    MINX ( _p, [ByProduct] )
VAR _min_value =
    MIN ( _min_value_t, _min_value_p )
RETURN
    GENERATESERIES ( _min_value, _max_value )

vkongfanfmsft_0-1712111554101.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.