cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
anupampandey
Helper III
Helper III

Old vs New Customers

Hi Team,

 

I am not able to identify the new customers added in current month. Below is the link to access the excel file which is having the data of customers.

"https://1drv.ms/x/s!AlBszrYdSOY2lscVCwbW1xlb4TidJg"

 

Please help me into this.

 

Thanks,

Anupam

 

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft
Microsoft

Hi,

 

@Greg_Deckler, to flag the new customers added in current month, no need to compare the Day part in the condition of your formula.Smiley Happy

 

@anupampandey, you should be able to use the formula below to create a calculate column in your customer table to flag the new customers added in current month.

IsNewCustomAddedInCurrentMonth =
IF (
    MONTH ( Sheet1[Tran_DT] ) = MONTH ( TODAY () )
        && YEAR ( Sheet1[Tran_DT] ) = YEAR ( TODAY () ),
    1,
    0
)

c2.PNG

 

Regards

View solution in original post

4 REPLIES 4
v-ljerr-msft
Microsoft
Microsoft

Hi,

 

@Greg_Deckler, to flag the new customers added in current month, no need to compare the Day part in the condition of your formula.Smiley Happy

 

@anupampandey, you should be able to use the formula below to create a calculate column in your customer table to flag the new customers added in current month.

IsNewCustomAddedInCurrentMonth =
IF (
    MONTH ( Sheet1[Tran_DT] ) = MONTH ( TODAY () )
        && YEAR ( Sheet1[Tran_DT] ) = YEAR ( TODAY () ),
    1,
    0
)

c2.PNG

 

Regards

Thanks I got it right.

 

 

Regards

Hi @anupampandey,

 

Great to hear the problem got resolved! Could you accept the corresponding reply as solution to help others who may have similar issue easily find the answer and close this thread?Smiley Happy

 

Regards

Greg_Deckler
Super User
Super User

Add a column in your data model:

 

IsCurrentMonth = IF(DAY([Trans_DT]) = DAY(TODAY()) && MONTH([Trans_DT]) = MONTH(TODAY()) && YEAR([Trans_DT]) = YEAR(TODAY()),1,0)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors