Forum Discussion
Anonymous
8 years agoNot applicable
Lookup Help please
Hello, I have two data tables, each with Account Names and Revenue numbers. Some of the accounts are "special" and are called "AMSI" or "CMA", so I have a lookup table with these accounts with th...
- 8 years ago
Hi
Create a table containing all Account names from all tables
Table = GROUPBY ( UNION ( Sheet2, Sheet3, Sheet4 ), [ Account Names] )
Add a column to define if they are "AMSI", "CMA" or"Other".
Column 2 = IF ( ISBLANK ( RELATED ( Sheet1[Account Name] ) ), "others", RELATED ( Sheet1[Account Name] ) )In table visual
Best Regards
Maggie
v-juanli-msft
8 years agoCommunity Support
Hi
Create a table containing all Account names from all tables
Table = GROUPBY ( UNION ( Sheet2, Sheet3, Sheet4 ), [ Account Names] )
Add a column to define if they are "AMSI", "CMA" or"Other".
Column 2 =
IF (
ISBLANK ( RELATED ( Sheet1[Account Name] ) ),
"others",
RELATED ( Sheet1[Account Name] )
)
In table visual
Best Regards
Maggie
Anonymous
8 years agoNot applicable
Maggie,
Thank you so much, that put me on the right track, and I now have a working report exactly the way I wanted it.
Brilliant
Andrew