I need to calculate a StartDate and EndDate of a current Quarter and the previous Quarter in vb.net.
|
1
|
|||||||
|
|
|
Forgive my lack of a VB.net-specific answer, but given a generic sort of date object with various functions in some pseudo-language (with zero-based day and month indexes)...
Edit converted above pseudocode to working VB.Net: /Stefan
|
||||||
|
|
|
I know you specified
I prefer this solution over others that involve modulo arithmetic and ugly conditionals in that it is fairly easily modified to handle non-standard quarter definitions. The definition of a Edit, added VB.Net-version of above C#-code /Stefan:
|
|||
|
|
The vb.net convertion needs a change. Changed it to vb 6 and it should read; ThisQuarterStart = DateSerial(today.Year, today.Month - (IIf(today.Month Mod 3 = 0, 3, today.Month Mod 3)) + 1, 1) ThisQuarterEnd = DateSerial(CInt(IIf(today.Month < 9, today.Year, today.Year + 1)), ((today.Month - (IIf(today.Month Mod 3 = 0, 3, today.Month Mod 3)) + 3) Mod 12) + 1, 1) - 1 |
||
|
|
