Month start from the 16/09/2019 and ends 15/10/2019 If the fate is the 11/10/2019 i want the month to be 9 instead of 10..it works in vb =(Month(Fields!Id.invdate.value)+IIF(Day(Fielfs!Id.invdate.value)<16,9,10) Mod 12+1
HOW to do in sqlite SELECT DISTINCT t1.AccNo,t1.InvDate,ifnull((SELECT MIN(t1min.InvDate) FROM t1 AS t1min WHERE t1min.InvDate > t1.InvDate AND t1.AccNo = t1min.AccNo), DATE(t1.InvDate,'start of month','+1 month', '0 day')) AS NextDate,
Strftime('%m',t1.InvDate) AS Period 'This is were if date 16/09 period is 9 And if date 11/10 period is showing 10 instead of 9
With SQLite you could use something like :-
This uses 3 Common Table Expressions (temporary tables available within the query)
The first is the start day of the month and facilitates the potential for flexibility
The second reformats the date to one that can easily be manipulated by SQLites Date And Time Functions
The third utilises the former CTE's to output either the un-changed date (if the day of the month is not less than the start day of the month) or the date adjusted by subtracting 1 month from the date if the day of the month is less than the start date.
You don't actually need CTE's they could be embedded, but using them can make the code easier to understand.
With SQLite if dates are stored in a recognised format (as per the link) then manipulation of the dates is simpler.
Example/Demo
Result :-
As can be seen the highlighted rows have been adjusted accordingly.