Created
July 4, 2020 21:34
-
-
Save CarlTBarnes/b4ec3d3968ccc8de0f5d81d9f4ada7cf to your computer and use it in GitHub Desktop.
Day of Week from Clarion Date
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DowName PROCEDURE(LONG pDate)!,STRING | |
CODE | |
RETURN CHOOSE( pDate % 7 + 1,'Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','???') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment