Forum Discussion
RvdHeijden
8 years agoPost Prodigy
Summarizing one table in a new table
Goodday, How can i summarize 1 table into a new table if i want the following result Mainproject City A A A A A ...
- 8 years ago
Zubair_Muhammad
8 years agoCommunity Champion
Please send me your Excel File.
I think Distinct(TableName) should do the job. Because it looks at distinct row...not a particular column
Zubair_Muhammad
8 years agoCommunity Champion
Hi RvdHeijden
Please try this calculated table based on the file you sent
Table =
VAR mytable =
SELECTCOLUMNS ( Blad1, "Hoofdproject", [Hoofdproject], "plaats", [plaats] )
RETURN
DISTINCT ( mytable )- Zubair_Muhammad8 years agoCommunity Champion