Forum Discussion
Anonymous
6 years agoNot applicable
Pulling distinct Value based on Matching Condition
How can we pull distinct column value from one table based on matcing condition from a another column like Date
Anonymous
6 years agoNot applicable
amitchandak will this be creating a new table ? I have pasted the sample data on the previous comments and the desired output.
Please suggest
Greg_Deckler
Community Champion
6 years agoAnonymous - I *think* you want:
New Table =
DISTINCT(
SELECTCOLUMNS(
FILTER('Table',[Latest_VM]="Latest"),
"VM Name",[VM Name]
)
)