Forum Discussion
Libin7963
1 year agoHelper II
Display blank row in Matrix table
I have two tables as below Table 1 Table 2 As you can see below the matrix table is not showing C, Is it possible to display C with value 0. ...
- 1 year ago
suparnababu8
1 year agoSuper User
Hi Libin7963
Create a DAX measure as mentioned below
FinalID =
SUMX(
'Table A',
VAR RelatedID = MAXX(
FILTER('Table B', 'Table B'[Name] = 'Table A'[Name]),
'Table B'[ID]
)
RETURN IF(ISBLANK(RelatedID), 0, RelatedID)
)Then Drag Name column from Table A into Rows field
then drag FinalID measure into Values field
Then you'll get the output as you required.
Hope this helps you.
Thanks!