Tuesday, March 22, 2022

Get Fiscal year from Current Date in Crystal Report

 IF Month ( CurrentDate ) <= 6

THEN ToText( Year ( CurrentDate ) - 1, 0, "" ) + '/' + ToText( Year ( CurrentDate ), 0, "" )

ELSE ToText( Year ( CurrentDate ), 0, "" ) + '/' + ToText( Year ( CurrentDate ) + 1, 0, "" )

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...