Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
Solved! Go to Solution.
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.
@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 )
Regards
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.
@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 )
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?
Regards
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)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
35 |
User | Count |
---|---|
95 | |
79 | |
52 | |
49 | |
47 |