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.
Samarth_18
Community Champion
4 years agoHi Anonymous ,
You can create two measure like below for getting required output:-
Distinct_comapny_asset =
MAXX (
DISTINCT ( 'Table'[Source] ),
LASTNONBLANKVALUE ( 'Table'[Source], MAX ( 'Table'[Total Asset] ) )
)
Sum_of_assets =
SUMX ( DISTINCT ( 'Table'[Source] ), [Distinct_comapny_asset] )output:-
Note:- I have 7,916,559 instead of 7,916,759 due to which output is not matching but it will match at your end.
Below is my table snapshot:-
Thanks,
Samarth