Forum Discussion
sborowiec13
8 years agoRegular Visitor
Creating a new table with the first calculated value for each field name
I have a variety of different customer numbers in my data and using fixed calculations, I have been able to get the numbers I need on a category basis (had to do a couple of fixed calculations on age...
- 8 years ago
Hi sborowiec13,
If the sample you posted is the data source, you can try out a measure like this.
Measure = SUMX ( SUMMARIZE ( 'Table1', 'Table1'[Customer], Table1[Value], "Unique", DISTINCT ( 'Table1'[Value] ) ), [Value] )Best Regards,
Dale
v-jiascu-msft
Microsoft Employee
8 years agoHi sborowiec13,
If the sample you posted is the data source, you can try out a measure like this.
Measure =
SUMX (
SUMMARIZE (
'Table1',
'Table1'[Customer],
Table1[Value],
"Unique", DISTINCT ( 'Table1'[Value] )
),
[Value]
)
Best Regards,
Dale