The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have two tables and two cards here.
(I want to remove the total row in the second table how do I do that?)
Now I am trying to create additional table that are consist of column Service Provided and column Renewal but I want to filter it by Expiring or Expired separately. I have created a measure that filters it but it only works for the card
Expiring = CALCULATE(COUNT('Vendor Data'[Service Provided]), FILTER('Vendor Data','Vendor Data'[Renewal] = "Expiring"))
and if i try to do it in a table it became like this
Do you guys know how can I do it in a table?
Solved! Go to Solution.
@Anonymous , one way is is use visual level filter , measure is not blank.
Or have meausre like the example
sumx(filter(values(Table[end]), not(isblank([measure]))),[measure])
@Anonymous , one way is is use visual level filter , measure is not blank.
Or have meausre like the example
sumx(filter(values(Table[end]), not(isblank([measure]))),[measure])
Thank you again Amitchandak 🙂