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.
Hi,
I have column "Test" and column "Completed" and I want to add column "Test left".
Forumla for Test left: =COUNTIF($G$4:$G$11;">"&G4).
$G$4:$G$11 = Completed Column, G4 = first column under Completed
Thanks
try this syntax
Column = VAR __CurrentDate = Table1[Completed] VAR __TableFiltered = FILTER(Table1, Table1[Completed]>__CurrentDate) RETURN COUNTROWS(__TableFiltered)
it returns null instead of 0 so you may want to add +0 at the end if that makes difference for you