Ashish Mathur
New Member
- Joined
- Mar 10, 2013
- Messages
- 40
- Office Version
- 365
- Platform
- Windows
Hi,
I have a table named Dummy with two columns - Material and Status. Material has various numeric codes and Status has one of the two text values - A or I. There can be duplication combinations of material code and Status appearing. To explain better, the table looks like this
Material Status
3001 A
20003 I
3001 A
3001 I
58943 A
From this table, I would like to generate a table of unique combinations as follows
Material Status
3001 A
20003 I
3001 I
58943 A
I just wanted to confirm if the calculated field formula below would generate my desired table
=GENERATE(SUMMARIZE(Dummy,Dummy[Material]),SUMMARIZE(Dummy,Dummy[Status]))
Could you please confirm.
Thank you.
I have a table named Dummy with two columns - Material and Status. Material has various numeric codes and Status has one of the two text values - A or I. There can be duplication combinations of material code and Status appearing. To explain better, the table looks like this
Material Status
3001 A
20003 I
3001 A
3001 I
58943 A
From this table, I would like to generate a table of unique combinations as follows
Material Status
3001 A
20003 I
3001 I
58943 A
I just wanted to confirm if the calculated field formula below would generate my desired table
=GENERATE(SUMMARIZE(Dummy,Dummy[Material]),SUMMARIZE(Dummy,Dummy[Status]))
Could you please confirm.
Thank you.