Forum Discussion
pabburi
8 years agoFrequent Visitor
Remove duplicates from the dataset
From the given dataset i need filter out the duplcates and from the output i need to develop the visualization.Plese help me out.
- 8 years ago
Hi pabburi,
Here is one way. Create a calculated table using the following code
Table = SUMMARIZE( 'Table1', 'Table1'[ApplicationID] , 'Table1'[Manager] , "Percentage" , MAX('Table1'[Percentage] ) )
Phil_Seamark
8 years agoMicrosoft Employee
Hi pabburi,
Here is one way. Create a calculated table using the following code
Table =
SUMMARIZE(
'Table1',
'Table1'[ApplicationID] ,
'Table1'[Manager] ,
"Percentage" , MAX('Table1'[Percentage]
)
)pabburi
8 years agoFrequent Visitor
It worked.
Thank you Phil