Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
SharayuChikode
New Member

Too few arguments were passed to the FILTER function.The minimum argument count for function is 2

Hi, I am new to Power Bi and I am struggling with DAX. I have this function in the filter, it is giving me an error. How can I fix this?

 
Expenses = CALCULATE([Transcation Amount], FILTER (transactions[Transaction Type] = "debit"), transactions[Category] <> "transfer", transactions[Category] <> "Credit Card Payment")
 
Income = CALCULATE([Transcation Amount], FILTER(transactions[Category] = "credit"), transactions[Category]<> "transfer", transactions[Category] <> "Credit Card Payment")

 

1 REPLY 1
PaulDBrown
Community Champion
Community Champion

FILTER function requires a table expression as the first argument. so in your case, the measure might be:

Expenses =
CALCULATE (
    [Transcation Amount],
    FILTER (
        transactions,
        transactions[Transaction Type] = "debit"
            && transactions[Category] <> "transfer"
            && transactions[Category] <> "Credit Card Payment"
    )
)




Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.