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

Sum of Distinct columns by Created Previous Month Date

Hello all! 

 

Here's the data I'm trying to calc the previous months (February) data based on these distinct columns: 

 

lw24_0-1678485842798.png

 

Thank you!!

1 ACCEPTED SOLUTION

Thank you, gave that one a shot but wasn't quite what I was looking for. I'd been working on this seperately with this formula and got to what I needed, not sure if this is efficient?...

 

New Column = 

CALCULATE(

SUMX(

DISTINCT (Table'[ID]), CALCULATE(MAX('Table'[Amount]))),

DATESINPERIOD('Table'[Created Date],MAX('Table'[Created Date]),-30,DAY))

 

 

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

Hi @lw24 

please try

NewColumn =
VAR T1 =
CALCULATETABLE (
'Table',
ALLEXCEPT (
'Table',
'Table'[File Date],
'Table'[Name],
'Table'[ID],
'Table'[Created Date]
)
)
VAR T2 =
FILTER (
T1,
FORMAT ( 'Table'[File Date], "YYMM" ) = FORMAT ( 'Table'[Created Date], "YYMM" )
)
RETURN
MAXX ( T, 'Table'[Amount] ) + 0

Thank you, gave that one a shot but wasn't quite what I was looking for. I'd been working on this seperately with this formula and got to what I needed, not sure if this is efficient?...

 

New Column = 

CALCULATE(

SUMX(

DISTINCT (Table'[ID]), CALCULATE(MAX('Table'[Amount]))),

DATESINPERIOD('Table'[Created Date],MAX('Table'[Created Date]),-30,DAY))

 

 

FreemanZ
Super User
Super User

hi @lw24 

the logic is not very clear. could you elaborate it?

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