Is it possible to create a saved search showing th...
# general
l
Is it possible to create a saved search showing the total GL account balance as of every Friday in the past 3 months? Rolling but as of every Friday only. It seems possible to do it every week but making it as of every Friday only is challenging to me.
m
Maybe try to add a formula numeric in the criteria to get the day of the week TO_NUMBER(TO_CHAR({date},’DD’)) is less than 6
Or whatever works for Friday depending on your first day of the week
l
Thank you. I used 'D'.
d
just to add you can use the format mask
DAY
or
DY
so that it's system/user agnostic Especially if you allow the First Day of Week preference to be overridden (Setup > Company > General Preferences > "Overriding Preferences" tab)
l
Ahhh thanks @David B