formula

  • Thread starter Thread starter ern
  • Start date Start date
E

ern

I want to put a date in a cell (I.E. a2) and deduct a fixed amount from a
cell (I.E. j2)
 
And the relationship between the date and the amount is ...?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Are you looking to display, say today's date in A2, and *also* display the
value of J2 minus a "certain" number?

In A2:
=TEXT(TODAY(),"mm-dd-yy")&" "&J2-20

If you want to use the date from another cell, say A1, and you want to
deduct the number from another cell, say J1, then try this:

=TEXT(A1,"mm-dd-yy")&" "&J2-J1


--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


I want to put a date in a cell (I.E. a2) and deduct a fixed amount from a
cell (I.E. j2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

excel formula 1
Formula to change date to reduce bal 3
problem combining 2 formulas 3
Conditional test 1
Excel =SUM(A1=A1+B1) 0
Offset, Match Questiond 5
Assistance with formula in SumIf statement 1
Validation 3

Back
Top