Forum Discussion
Aucesar
Helper III
3 years agoScalar Value, dealing with text convert DAX Table to Measure
Hi Community, I could create a table with this: NewTable = SUMMARIZE(tableA, TableA[Shift1], "NewColunm", DISTINCTCOUNT(TableA[ProductionBtach])) Everithing good, but when I tried to use ...
Semaj06
3 years agoRegular Visitor
Hi
You cannot use it as a measure, you are returning 2 columns and with a measure you have to return only 1 value.
If you want to claculate, just do a measure with the countrows part and just publist the shift colum on the display and your new measure.