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

ADDCOLUMNMS

Hi all,

 

I have these Calculated Table DAX formulas

TrendMeasures1 =
ADDCOLUMNS('RMBTrendData1',
            "RMB Amount",
             CALCULATE(
                 SUM(Detail[Reimb. Amount]),
       ALL(Calendar), DATESINPERIOD(Calendar[Date],VALUES('First Date'[First Date])-1,-7,DAY)
            )
)
RMBTrendData1 is a table with one row and one column (Trend Point)
Result: TrendMeasures1 is a table with one row and two columns(Trend Point and RMB Amount)
 
TrendMeasures2 =
ADDCOLUMNS('RMBTrendData2',
            "RMB Amount",
             CALCULATE(
                 SUM(Detail[Reimb. Amount]),
       ALL(Calendar), DATESINPERIOD(Calendar[Date],VALUES('First Date'[First Date])-1,-14,DAY)
            )
 
RMBTrendData2 is a table with one row and one column (Trend Point)
Result: TrendMeasures2 is a table with one row and two columns(RMB Amount and Trend Point)

 

Because the Order of TrendMeasure1 and TrendMeasure2 are different, a Calculated Table that union the results of these measures produce undesirable result.

Trend = UNION(TrendMeasures1,TrendMeasures2)

Undesired Result:

TrendPoint  RMB Amount

1                            $14,000

$15,000              2

 

Desired Result:

TrendPoint   RMB Amount

1                              $14,000

2                              $15,000

1 ACCEPTED SOLUTION
SteveCampbell
Memorable Member
Memorable Member

Could you try:

 

Trend = 
UNION(
SUMMARIZECOLUMNS(TrendMeasures1[Trend Point],(TrendMeasures1[RMB Amount])
,
SUMMARIZECOLUMNS(TrendMeasures2[Trend Point],(TrendMeasures2[RMB Amount])
)

 

Love hearing about Power BI tips, jobs and news?
I love to share about these - connect with me!

Stay up to date on  linkedin-logo.png
Read my blogs on  powerbi.tips_.png

Remember to spread knowledge in the community when you can! tu.png

 



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



View solution in original post

2 REPLIES 2
SteveCampbell
Memorable Member
Memorable Member

Could you try:

 

Trend = 
UNION(
SUMMARIZECOLUMNS(TrendMeasures1[Trend Point],(TrendMeasures1[RMB Amount])
,
SUMMARIZECOLUMNS(TrendMeasures2[Trend Point],(TrendMeasures2[RMB Amount])
)

 

Love hearing about Power BI tips, jobs and news?
I love to share about these - connect with me!

Stay up to date on  linkedin-logo.png
Read my blogs on  powerbi.tips_.png

Remember to spread knowledge in the community when you can! tu.png

 



Did I answer your question? Mark my post as a solution! Proud to be a Super User!


Connect with me!
Stay up to date on  
Read my blogs on  



Thanks SteveCampbell

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.

Top Solution Authors