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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Friends,
I have created a measure that shows the gap in hours between the (Earliest Sign up) 2nd column and (First order date)3rd column. I now need to know the average gap to visualize it as a card. Please help me.
Measure used:
Solved! Go to Solution.
Average gap = AVERAGEX( ADDCOLUMNS( VALUES( 'Table'[full_name]), "@val", [Gap measure]), [@val])
@Andrew_na_lang Assuming you want to get an average per "full_name", you could use an AverageX function such as
AverageSignup = AVERAGEX(values(full_name),[Gap from signup to First Order (Hours)])
@moizsherwani actually what I need is the average gap (Total) not the average sign up.
Average gap = AVERAGEX( ADDCOLUMNS( VALUES( 'Table'[full_name]), "@val", [Gap measure]), [@val])
@johnt75 I don't need a new column. I just need the total average of gap from sign up to first order.
Its not a column, its a measure. Put this measure on a card visual and it will show the average gap
Not working
You need a close ) after the measure ], then delete the extra ) at the end of the line