The following Splunk Query will return the total number of hits to a web site on the least active day of a given time range:
sourcetype="iis" | rare limit=1 date_mday | rename count as Value | fieldformat Value=tostring(Value,"commas")| eval Metric="Number of hits on least active date" | fields - date_mday, count, percent | fields Metric, Value