Account for third pay period in month, libreoffice calc

claven123

Board Regular
Joined
Sep 2, 2010
Messages
83
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I have a budget and I have pay period dates set up in say.... A1 is a set date, 01/13/2017 (first pay period for the year). I then have another cell, A20 with =A1+14 which gives me the next pay date and so forth and so forth along the months across sheets. Works great, well until you get three pay periods in the month. The third pay period is set up with the same grouping of budget stuff, IF needed. That cell, A50 would have the same formula A20+14.

How do I set up that cell, A50 to only do the math if there is a third pay period in it..... THEN if it's used the next cell would have to adjust and use that cell A50 for the source of the next formula.

Does this make sense?

A1 is a date 01/13/2017
A20 is =A1+14
A50 is =IF(A20+14=SAME MONTH as A1, A20+14)

No idea how to code the "SAME MONTH as A1"


Thanks,

D
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Re: How to account for third pay period in month, libreoffice calc

Pls try this

Code:
=IF(MONTH(A20+14)=MONTH(A1), A20+14,"2nd Condition")
 
Upvote 0
Re: How to account for third pay period in month, libreoffice calc

I can't see the rest of your code.... this is what I see.


=IF(MONTH(A20+14)=MONTH(A1), A20+14,"2nd Condition")


I'm not sure what the 2nd condition means...

Should I post this to a specific libreoffice forum?


Thanks

D
 
Upvote 0
Re: How to account for third pay period in month, libreoffice calc

A50 is =IF(A20+14=SAME MONTH as A1, A20+14)

Second condition is whatever you want to put it . you did not mention what you want if the argument is false
 
Upvote 0
Re: How to account for third pay period in month, libreoffice calc

Yes, yes... forgot about that, for some reason I thought that was some other thing.

This worked great, thanks!!

Code:
=IF(MONTH(AY23+14)=MONTH(AY11), AY23+14,"-")


Dennis
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top