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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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