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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
AshDil
Helper V
Helper V

Want to show Bi-Weekly Sales Dynamically

Hi,

Want to show sales Bi-Weekly dynamically.
eg: if we are in first half of the month then need to show sales from 1/10/2021 to 14/10/2021

and if we are in 2nd half of the month need to show sales from 15/10/2021 to  31/10/2021.

 

Please help me to do.

Thanks,

AshDil.

2 ACCEPTED SOLUTIONS
VahidDM
Super User
Super User

Hi @AshDil 

 

Try to create a measure like this:

Measure=
Var _T = today()
Var _BIW = if(_T<=14,1,2)
Var _Start = if(_T<=14,EOMONTH(_T,-1)+1,Date(Year(_T),Month(_T),15)
Var _Finish = if(_T<=14,Date(Year(_T),Month(_T),14),EOMONTH(_T,0))
return
Calculate(sum(table[Sale]),filter(table,table[date]>=_Start&&table[date]<=_Finish))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

View solution in original post

Hi @VahidDM

 

Thanks for your help. It worked for me with following small modification.

 

Measure=
Var _T = today()
Var _Start = if(Day(_T)<=14,EOMONTH(_T,-1)+1,Date(Year(_T),Month(_T),15)
Var _Finish = if(Day(_T)<=14,Date(Year(_T),Month(_T),14),EOMONTH(_T,0))
return
Calculate(sum(table[Sale]),filter(table,table[date]>=_Start&&table[date]<=_Finish))

 

Thanks,

AshDil.

 

View solution in original post

2 REPLIES 2
VahidDM
Super User
Super User

Hi @AshDil 

 

Try to create a measure like this:

Measure=
Var _T = today()
Var _BIW = if(_T<=14,1,2)
Var _Start = if(_T<=14,EOMONTH(_T,-1)+1,Date(Year(_T),Month(_T),15)
Var _Finish = if(_T<=14,Date(Year(_T),Month(_T),14),EOMONTH(_T,0))
return
Calculate(sum(table[Sale]),filter(table,table[date]>=_Start&&table[date]<=_Finish))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

Hi @VahidDM

 

Thanks for your help. It worked for me with following small modification.

 

Measure=
Var _T = today()
Var _Start = if(Day(_T)<=14,EOMONTH(_T,-1)+1,Date(Year(_T),Month(_T),15)
Var _Finish = if(Day(_T)<=14,Date(Year(_T),Month(_T),14),EOMONTH(_T,0))
return
Calculate(sum(table[Sale]),filter(table,table[date]>=_Start&&table[date]<=_Finish))

 

Thanks,

AshDil.

 

Helpful resources

Announcements
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.