This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi, I got an error for the below column. How to correct it?
A date column containing duplicate dates was specified in the call to function 'ENDOFMONTH'. This is not supported.
Flag =
if(AND (MONTH(Append[Travel Date])=MONTH(Append[Restoration Date]) , YEAR(Append[Travel Date])=YEAR(Append[Restoration Date])),1,
if(AND( Append[Travel Date] = ENDOFMONTH(Append[Travel Date]) ,
(((Year(Append[Restoration Date])-Year(Append[Travel Date]))*12) + Month(Append[Restoration Date])-Month(Append[Travel Date]))<=1),1,0))
Solved! Go to Solution.
@PBI_newuser ,based on what I got try like
if(eomonth(Append[Travel Date],0)=eomonth(Append[Restoration Date].0) ,1,
if(AND( Append[Travel Date] = eomonth(Append[Travel Date],0) ,
(datediff(Append[Restoration Date], Append[Travel Date], month)<=1),1,0)))
Hi @PBI_newuser ,
Or is this what you want?
Flag =
IF(
MONTH([Travel Date]) = MONTH([Restoration Date]) && YEAR([Travel Date]) = YEAR([Restoration Date]),
1,
IF(
[Restoration Date] = ENDOFMONTH('Append'[Travel Date]) && DATEDIFF([Restoration Date], [Travel Date], MONTH ) <=1,
1, 0
)
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@PBI_newuser ,based on what I got try like
if(eomonth(Append[Travel Date],0)=eomonth(Append[Restoration Date].0) ,1,
if(AND( Append[Travel Date] = eomonth(Append[Travel Date],0) ,
(datediff(Append[Restoration Date], Append[Travel Date], month)<=1),1,0)))
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |