#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default "If" formula

I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I really
appreciate any help.

Thanks,
Heidi
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,696
Default "If" formula

Congrats on the new job!!

=IF(Day(A2)=26,86.72,0)

Assuming the due date is the same for everyone?

this would enter $0 if not late...

"Needing help at new job" wrote:

I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I really
appreciate any help.

Thanks,
Heidi

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default "If" formula

Try one of these:

To return either the late fee or 0:

=(DAY(A1)=26)*86.72

To return either the late fee or a blank:

=IF(DAY(A1)=26,86.72,"")

--
Biff
Microsoft Excel MVP


"Needing help at new job"
wrote in message ...
I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to
do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I
really
appreciate any help.

Thanks,
Heidi



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default "If" formula

Thank you so Much!!! You made it look easy LOL

"Sean Timmons" wrote:

Congrats on the new job!!

=IF(Day(A2)=26,86.72,0)

Assuming the due date is the same for everyone?

this would enter $0 if not late...

"Needing help at new job" wrote:

I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I really
appreciate any help.

Thanks,
Heidi

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default "If" formula

=IF(DAY(A2)=26,86.72,"whatever answer you want in the other situations")
--
David Biddulph

"Needing help at new job"
wrote in message ...
I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to
do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I
really
appreciate any help.

Thanks,
Heidi





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default "If" formula

Ok, is it possible if the "day" is left black to add the late fee?

"Sean Timmons" wrote:

Congrats on the new job!!

=IF(Day(A2)=26,86.72,0)

Assuming the due date is the same for everyone?

this would enter $0 if not late...

"Needing help at new job" wrote:

I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I really
appreciate any help.

Thanks,
Heidi

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,696
Default "If" formula

I assume that's meant to be day is left blank.

=IF(OR(A2="",Day(A2)=26),86.72,0)

"Needing help at new job" wrote:

Ok, is it possible if the "day" is left black to add the late fee?

"Sean Timmons" wrote:

Congrats on the new job!!

=IF(Day(A2)=26,86.72,0)

Assuming the due date is the same for everyone?

this would enter $0 if not late...

"Needing help at new job" wrote:

I'm trying to set up a spreadsheet to help me with my job. I track/audit
accounts for a man that does private lending. Here is what I'm trying to do:

I need a formula for "if the date in column A is 26th of each month or
later, I need column E to be a late fee of $86.72"

I really seem to have problems when it comes to the "if" fuction so I really
appreciate any help.

Thanks,
Heidi

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula Result is "V6", need Excel to use cell "V6", not the resul Erik Excel Worksheet Functions 3 September 5th 08 03:10 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
HELP on "left","right","find","len","substitute" functions serene83 Excel Discussion (Misc queries) 5 June 27th 06 02:23 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM


All times are GMT +1. The time now is 10:45 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"