Perth-WRX.com  

Go Back   Perth-WRX.com > Off Topic Discussions > Non-WRX Discussion
Register Diddy Kart ArticlesAll AlbumsBlogs FAQ Members List Calendar Search Today's Posts Mark Forums Read


Welcome to Perth-WRX, click here to register!

Like Tree1Likes

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 26-06-2012, 11:39 PM
westoz's Avatar
STI Master
Member
 
Join Date: Mar 2003
Location: Bunbury 33º20'20.6"S 115º41'04.1"E
Posts: 596
Thanks: 9
Thanked 15 Times in 2 Posts
westoz at standard level
Default Help with Excel based timesheet

Any Excel experts out there? I'll try to keep it brief...

I have a part time employee who works anything from 1 to 6 days with me. I use a freebie Excel based timesheet which I snagged off the Net, and have managed to personalise it for the most part. The only prob I can't solve goes like this:

Each work day is always the same number of hours, meaning there are only 6 possible weekly incomes depending on number of days worked. This also means there are only 6 possible amounts of tax withheld.

Under the Total Pay cell I have added two further descriptions, being Tax Withheld and Nett Pay. I've got the Nett Pay cell function working, but I can't work out the formula for the tax withheld cell value unless I only put in a single calculation argument.

Is there a way to put in multiple arguments so that, eg, 6 days pay=$A tax withheld, 5 days pay=$B tax withheld etc?

Hope that explains it..... thanks in advance for any solution.
__________________
MY99 WRX sedan WRC blue Sold :(
MY99 WRX sedan Dark blue pearl :D
MY97 Liberty Outback Ltd Wagon
1990 Mk3 Supra turbo fully rebuilt 7M-GTE (Older son)
1991 Celica GT4 (Younger son)
Reply With Quote
  #2  
Old 27-06-2012, 06:42 PM
westoz's Avatar
STI Master
Member
 
Join Date: Mar 2003
Location: Bunbury 33º20'20.6"S 115º41'04.1"E
Posts: 596
Thanks: 9
Thanked 15 Times in 2 Posts
westoz at standard level
Default

52 lookers at this thread so far, but no answers? Anyone?

Gotta get all the taxes done & into the accountant b4 heading off to Europe soon .....
__________________
MY99 WRX sedan WRC blue Sold :(
MY99 WRX sedan Dark blue pearl :D
MY97 Liberty Outback Ltd Wagon
1990 Mk3 Supra turbo fully rebuilt 7M-GTE (Older son)
1991 Celica GT4 (Younger son)
Reply With Quote
  #3  
Old 27-06-2012, 06:55 PM
Sharpy.au's Avatar
Sir AntiLag
Member
 
Join Date: Nov 2011
Location: NoR
Posts: 319
Thanks: 15
Thanked 23 Times in 17 Posts
Sharpy.au at standard level
Default

I don't know if I quite understand what you are asking, and it doesn't sound like the most efficient way to do it but you can nest IF functions within other if functions. Alternatively you could consider using a count and a vlookup function looking at a table which would make it easy to adjust tax amounts as you need.
Reply With Quote
  #4  
Old 27-06-2012, 07:05 PM
westoz's Avatar
STI Master
Member
 
Join Date: Mar 2003
Location: Bunbury 33º20'20.6"S 115º41'04.1"E
Posts: 596
Thanks: 9
Thanked 15 Times in 2 Posts
westoz at standard level
Default

Quote:
Originally Posted by Sharpy.au View Post
I don't know if I quite understand what you are asking, and it doesn't sound like the most efficient way to do it but you can nest IF functions within other if functions. Alternatively you could consider using a count and a vlookup function looking at a table which would make it easy to adjust tax amounts as you need.
I did Google it b4 posting on here... tried "nesting" IF functions but it keeps coming back with errors . Didn't think it would be such a complicated issue as it has turned out.
__________________
MY99 WRX sedan WRC blue Sold :(
MY99 WRX sedan Dark blue pearl :D
MY97 Liberty Outback Ltd Wagon
1990 Mk3 Supra turbo fully rebuilt 7M-GTE (Older son)
1991 Celica GT4 (Younger son)
Reply With Quote
  #5  
Old 27-06-2012, 07:22 PM
MadDocker's Avatar
Sir AntiLag
Member
 
Join Date: Oct 2006
Location: Seville Grove
Posts: 386
Thanks: 1
Thanked 9 Times in 9 Posts
MadDocker at standard level
Default

Might not help but it is any easier to just add another cell so on 5 day week you use cell A and 6 day week you use cell B?

Ill ask the girl at work tomorrow to have a look and see what she says anyway.
__________________
Bush chook enthusiast
Reply With Quote
  #6  
Old 27-06-2012, 07:40 PM
gumby's Avatar
Sign me up!
uh oh
 
Join Date: Aug 2006
Location: Baldivis
Posts: 1,248
Thanks: 5
Thanked 7 Times in 6 Posts
gumby at standard level
Send a message via MSN to gumby
Default

While probably not the most efficient way, IF functions should have worked, maybe paste what you are trying to enter, see if someone can spot the error?
Reply With Quote
  #7  
Old 27-06-2012, 07:44 PM
mattmy99's Avatar
Sign me up!
Subaru Tech Division
 
Join Date: Mar 2006
Location: 6056 and 4000
Posts: 1,814
Thanks: 11
Thanked 35 Times in 25 Posts
mattmy99 knows their stuff
Default

I think i know what you're asking, and should be able to write nested IF formula/function to do what you want, but it's late over here, I'll tackle it in the morning.
__________________
Signarape!
Reply With Quote
  #8  
Old 27-06-2012, 07:53 PM
Sharpy.au's Avatar
Sir AntiLag
Member
 
Join Date: Nov 2011
Location: NoR
Posts: 319
Thanks: 15
Thanked 23 Times in 17 Posts
Sharpy.au at standard level
Default

Copy and paste your formula so we can see, I know Bryno is really good at excel. If you email it to me I will take a look.

Your IF statement should go along the lines of:

Code:
=IF(A1=6,200,IF(A1=5,175,IF(A1=4,160,IF(A1=3,145,IF(A1=2,130,IF(A1=1,115,0))))))
Where A1 is the number of days worked. It isn't an efficient way but at the end of the day if you understand the sheet and it does what it needs to then it should be fine
Reply With Quote
  #9  
Old 27-06-2012, 08:07 PM
westoz's Avatar
STI Master
Member
 
Join Date: Mar 2003
Location: Bunbury 33º20'20.6"S 115º41'04.1"E
Posts: 596
Thanks: 9
Thanked 15 Times in 2 Posts
westoz at standard level
Default

Here is my (failed) attempt, where I21 is the Total Pay, and the following formula is input into I23, which is the Tax Withheld value:

=IF(I21=904.25,154,154,=IF(I21=753.54,103,103,=IF( I21=602.83,69,69,=IF(I21=452.12,44,44,=IF(I21=301. 42,14,14,=IF(I21=150.71,0,0))))))

Maybe I need to use OR formulae? I'm a bit if a noob at Excel .
__________________
MY99 WRX sedan WRC blue Sold :(
MY99 WRX sedan Dark blue pearl :D
MY97 Liberty Outback Ltd Wagon
1990 Mk3 Supra turbo fully rebuilt 7M-GTE (Older son)
1991 Celica GT4 (Younger son)
Reply With Quote
  #10  
Old 27-06-2012, 08:20 PM
Sharpy.au's Avatar
Sir AntiLag
Member
 
Join Date: Nov 2011
Location: NoR
Posts: 319
Thanks: 15
Thanked 23 Times in 17 Posts
Sharpy.au at standard level
Default

Quote:
Originally Posted by westoz View Post
Here is my (failed) attempt, where I21 is the Total Pay, and the following formula is input into I23, which is the Tax Withheld value:

=IF(I21=904.25,154,154,=IF(I21=753.54,103,103,=IF( I21=602.83,69,69,=IF(I21=452.12,44,44,=IF(I21=301. 42,14,14,=IF(I21=150.71,0,0))))))

Maybe I need to use OR formulae? I'm a bit if a noob at Excel .
Try this:


=IF(I21=904.25,154,IF(I21=753.54,103,IF(I21=602.83 ,69,IF(I21=452.12,44,IF(I21=301.42,14,IF(I21=150.7 1,0,0))))))

Just review the numbers to make sure they are right. You were very close, you just replace the false statement with another IF function instead and don't use = other than at the beginning
Reply With Quote
The Following User Says Thank You to Sharpy.au For This Useful Post:
westoz (27-06-2012)
Reply

Tags
based, excel, timesheet

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
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
Report: Peugeot developing compact crossover based on 208 hatch rss.feed General Subaru Discussion 0 07-01-2012 12:00 AM
Hyundai Excel 1997 $1500ono mrclubspecevo4 For Sale (Cars Only) 0 17-12-2010 09:27 PM
Microsoft Excel HELP Wiiha Non-WRX Discussion 2 26-01-2008 08:27 AM
MY2000 Excel Headlights hybridgx Wanted 0 12-04-2007 08:41 PM
Help with Microsoft Excel ImPreSiV Non-WRX Discussion 5 08-03-2007 12:52 PM



Welcome to Perth-WRX, click here to register!

All times are GMT +8. The time now is 02:11 AM.


Powered by vBulletin® Version 3.8.9
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO