How do you count the total # of rows that fall within the range of "Today"?

I would like to accomplish this without a bunch of “helper columns”. Isn’t there a simple function ? Thanks Everyone

Use a Query column to create a query of rows that fit within Today. Then create a Rollup column to count the number of rows in that Query.

That worked. Thanks very much for the quick response and guidance.