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.
Good day all,
I have a filtered table which is pulling from a table named 'transactions'.
Solved! Go to Solution.
Hi @JimB-GA
Try this:
FILTER(Transactions,Transactions[Account Name] = "Savings" || Transactions[Account Name] = "Money Market")
@JimB-GA ,
You may also use The IN operator in DAX.
Hi @JimB-GA
Try this:
FILTER(Transactions,Transactions[Account Name] = "Savings" || Transactions[Account Name] = "Money Market")
Thanks. Just learned about the double pipe!
Thanks!
Jim-GA