How can I extract data for every 5th of the month?
For example, I want to have a report look like as following table in crystal report:
How can I make the column named [Total Jobs Created] a static value on report but run based on live database for the date after 5th of every next month?
For example, If let say today is 6th of Feb. After refresh the data, the [Total Jobs Created] value will be 123 static value.
I want the value of each month to be static value rather than dynamic value
Create a formula such as IF Day({job_created_date}) < 6 Then 1 ELSE 0 SUM that formula by your Month group. Note: use SUM, not COUNT for this.
You could use a Running Total instead, but the conditional total approach has some advantages.