Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello,
i would like summerize Value "LeadTime" when "Element_ID" is the same.
Can anybody help me to fix my issue ?
Solved! Go to Solution.
Hi, @sod3ho
What exactly result do you need?
If you need only table Element_ID - Sum of LeadTime this code fr new table should be enough
Table = SUMMARIZE(Table1;Table1[Element_ID];"SumOfLeadTime";sum(Table1[LeadTime]))
I dont see any other planning result
In visuals do not forget to not summarize Element_ID field
Anyway, you can summarize in visuals without any additional tables
Hi, @sod3ho
What exactly result do you need?
If you need only table Element_ID - Sum of LeadTime this code fr new table should be enough
Table = SUMMARIZE(Table1;Table1[Element_ID];"SumOfLeadTime";sum(Table1[LeadTime]))
I dont see any other planning result
In visuals do not forget to not summarize Element_ID field
Anyway, you can summarize in visuals without any additional tables
Hi @az38 ,
i think thats the Code for my request :