Forum Discussion
Anonymous
4 years agoNot applicable
Sum last non blank value
Hi, I need to sum the latest total asset of two companies. Please advise how to write the measure. Below is my table. Result should be 7,916,759 + 40,000,000 = 47,916,579
- 4 years ago
Hi, Anonymous
You can try the following methods.
Calculated column:
Last non blank date = CALCULATE ( MAX ( [Date] ), FILTER ( 'Table', [Source] = EARLIER ( 'Table'[Source] ) && NOT ( ISBLANK ( [Total Asset] ) ) ) )Sum = CALCULATE ( SUM ( 'Table'[Total Asset] ), FILTER ( 'Table', [Date] = [Last non blank date] ) )Measure:
Last non blank date M = CALCULATE ( MAX ( [Date] ), FILTER ( ALL('Table'), [Source] = MAX( 'Table'[Source] ) && NOT ( ISBLANK ( [Total Asset] ) ) ) )Sum M = CALCULATE ( SUM ( 'Table'[Total Asset] ), FILTER ( ALL ( 'Table' ), [Date] = [Last non blank date M] ) )Use the field "Last non blank date" to avoid the problem of taking the maximum value of "Total Asset" instead of the last non blank value.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Fowmy
Super User
4 years agoAnonymous
You can use this measure to total by source, it will add the last nonblank value based on the latest date for each source
Total =
SUMX(
VALUES(Table1[Source]),
LASTNONBLANKVALUE( Table1[Date], SUM(Table1[Total Asset] ))
)