Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Another question helpful people!
I'm trying to add these 3 data points to get a total.. and the DAX formula that I'm using is coming out all messed up.
Solved! Go to Solution.
I figured out the issue to my problem.
Once I deleted the old measure and created it in "Table1" everything came out correct.
I figured out the issue to my problem.
@tyjames05 , Create this as measure
TA = SUMX('RawData', RawDATA[Total Assemblies for Above Cell During Selected Shift]+RawDATA[Total CUT TO LENGTH pieces for Above Cell During Selected Shift]+RawDATA[Total PARFLEX pieces for Above Cell During Selected Shift])
if you need new column, you need to create one like
TA = ,RawDATA[Total Assemblies for Above Cell During Selected Shift]+RawDATA[Total CUT TO LENGTH pieces for Above Cell During Selected Shift]+RawDATA[Total PARFLEX pieces for Above Cell During Selected Shift]
Hello,
Yeah I was trying to create a measure and then use that measure in the table, not create a new column, sorry.
Your formula looks exactly like the one I tried. When I create the measure and put it in the table it looks like this.
I think it's adding up ALL of them and coming up with one massive number. I want it to be adding it up with specific totals for each day. What I'm trying to accomplish is we have 3 entries. Total Assemblies, Total CTL, and Total parflex. They are all different types of finished product. I want to create a measure where all 3 of them are added up as one on a day by day basis.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.