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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors