Forum Discussion
Anonymous
4 years agoNot applicable
Countifs equivalent matching variable criteria
Hi, I've had a search and found some countifs solutions for powerBI but none that I can see that are a solution to my goal so I'm hoping that somone could share a possible solution. Summary: I n...
- 4 years ago
Anonymous , a new column like
if([Date] < minx(filter(Table,[HostOrderId] =earlier([HostOrderId]) ),[Date]) , True(), false() )
or
if([Date]<= minx(filter(Table,[HostOrderId] =earlier([HostOrderId]) ),[Date]) , True(), false() )
Change as per need
amitchandak
4 years agoSuper User
Anonymous , a new column like
if([Date] < minx(filter(Table,[HostOrderId] =earlier([HostOrderId]) ),[Date]) , True(), false() )
or
if([Date]<= minx(filter(Table,[HostOrderId] =earlier([HostOrderId]) ),[Date]) , True(), false() )
Change as per need