Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Dear all
i have a problem with a calculated column used in table not showing the total.
The column is"LoadWeek*LaneNumber", in this case i woudl expect to have a total of 59, while shows nothing.
The formula is :
@v-zhangti
i tried your way but unfortunately the result is not the expected one.
i forgot to mentions that i have a filter on the visual, one on the page and also one on monthyear and year week as per screen attached
perhaps is related to filters?
Hi, @Faracla
I did my best to restore your data, check out the methods below.
Measure =
IF (
HASONEVALUE ( DIM_Tenders[ID] ),
SUM ( DIM_Tenders[LoadWeek*LaneNumber] ),
SUMX ( DIM_Tenders, [LoadWeek*LaneNumber] )
)
IF (HASONEVALUE()) can control the output of Total.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.