Forum Discussion
Anonymous
5 years agoNot applicable
Column values
Hello! Is there a way to bring column values to a measure? I tried using "VALUES" function but it only gives unique values and i want all of the values inside that column. Measure = VAR D...
CNENFRNL
5 years agoCommunity Champion
Hi, Anonymous , DAX measure is way different from Excel array formula; it's always used to aggregated data in a particular way (sum up, average, concatenate, etc.) in stead of return a series of results.
btw, in gereral, we can use ALL(CombinedTable) to retrieve an intact table, retaining all duplicates in each column.