At work, we need a "cycle" number that increases by 7 every day. What kind
of
formula could a use that would the value in "A1" (Say 5) and increase by 7
every day?
Put your value in A1 as you have proposed. Also put today's date in another
cell (for this example, say B1). Then put this formula in (for this example,
say A2)..
A2: =A1+7*(TODAY()-B1)
For each day that passes, A2 should display the 7 more than the previous
day. I am confused by your highlighting the word "cycle" in your original
posting though... is there some kind of maximum number for which the values
displayed in A2 should "start over"? If so, use this formula instead...
A2: =A1+MOD(7*(TODAY()-B1),X)
where you should replace X with the maximum value before recycling the
count. By the way, the value of X should be a multiple of 7.
Rick