Forum Discussion
Get Multiple Value from Multiple Unique value
- Anonymous2 years ago
Hi Wicak ,
You can make a little adjustment on the formula which provided by StrategicSavvy , please note that what he is creating is a calculated table.
Table A = UNION ( SUMMARIZE ( 'Table B', 'Table B'[Unique Number], 'Table B'[Size] ), SUMMARIZE ( 'Table C', 'Table C'[Unique Number], 'Table C'[Size] ), SUMMARIZE ( 'Table D', 'Table D'[Unique Number], 'Table D'[Size] ) )Best Regards
hi Wicak ,
To get this you need to create new table and use UNION formula.
here is the code :
Table A =
UNION(
'Table B',
'Table C',
'Table D'
)
This code will return multiple values from 3 tables
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: www.linkedin.com/in/lukasz-kozdron
- Wicak2 years agoHelper I
thank you for your reply. so sory table B, C and D is dumy, actually their table have multiple column. i try in DAX PBI and DAX has a get error pop up
is there any way other to solve this problem?
- Anonymous2 years agoNot applicable
Hi Wicak ,
You can make a little adjustment on the formula which provided by StrategicSavvy , please note that what he is creating is a calculated table.
Table A = UNION ( SUMMARIZE ( 'Table B', 'Table B'[Unique Number], 'Table B'[Size] ), SUMMARIZE ( 'Table C', 'Table C'[Unique Number], 'Table C'[Size] ), SUMMARIZE ( 'Table D', 'Table D'[Unique Number], 'Table D'[Size] ) )Best Regards