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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
majdkaid22
Helper V
Helper V

Filter argument add to existing DAX formula

Hi guys,

 

I have created the following formula to capture the unique new funded clients

 

Power BI.PNG

 

New/Additional = if(ISEMPTY(CALCULATETABLE
('meAccountTransaction',ALLEXCEPT
('meAccountTransaction','meAccountTransaction'[ClientID]),'meAccountTransaction'[TransactionDate] < EARLIER
('meAccountTransaction'[TransactionDate]))), "New", "additional")

 

The above gives me the value whether "New or Additional",  based on date (EARLIER) regardless of the amount of the deposit & nor if there is any earlier deposit in the current month.  

 

 

What I would like to have is: 

_______ 

1- IF meAccountTransaction'[ClientID] does not exist prior to this month 

&

2- IF meAccountTransaction'[Sum Deposits] per  meAccountTransaction'[ClientID] during the current month is greater than 200

 

Then

"New", "additional"

_______

 

appreciate any help

 

Thanks,

M

 

1 ACCEPTED SOLUTION
v-sihou-msft
Microsoft Employee
Microsoft Employee

@majdkaid22

 

In this scenario, you can just use MONTH() to compare the month part of [TransactionDate], and use AND() to combine the condition in IF(). The expression can be like:

 

New/Additional = if(
AND(
ISEMPTY(
CALCULATETABLE
('meAccountTransaction',
ALLEXCEPT('meAccountTransaction','meAccountTransaction'[Cli​entID]),
MONTH('meAccountTransaction'[TransactionDate]) < MONTH(EARLIER
('meAccountTransaction'[TransactionDate]))
)),
'meAccountTransaction'[Sum Deposits]>200), "New", "additional")

See my test sample below:

 

 

Capture233.PNG

 

Regards,

View solution in original post

2 REPLIES 2
v-sihou-msft
Microsoft Employee
Microsoft Employee

@majdkaid22

 

In this scenario, you can just use MONTH() to compare the month part of [TransactionDate], and use AND() to combine the condition in IF(). The expression can be like:

 

New/Additional = if(
AND(
ISEMPTY(
CALCULATETABLE
('meAccountTransaction',
ALLEXCEPT('meAccountTransaction','meAccountTransaction'[Cli​entID]),
MONTH('meAccountTransaction'[TransactionDate]) < MONTH(EARLIER
('meAccountTransaction'[TransactionDate]))
)),
'meAccountTransaction'[Sum Deposits]>200), "New", "additional")

See my test sample below:

 

 

Capture233.PNG

 

Regards,

@v-sihou-msft apologies for my late reply. it has indeed worked out! 

 

Thanks mate

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.