Perth-WRX.com  

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


Welcome to Perth-WRX, click here to register!

Like Tree6Likes

Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 10-06-2012, 09:15 AM
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 Excel geeks, lend my your brain!

Me*

Help a brother out!
I have a register of all the inspection and test equipment that my Quality Control crew in the field have in their procession. The register shows (along with a bunch of other random crap) the date it was last calibrated, and the date it is next due to be calibrated.
I'm not too bad with excel basics, but am far from a programmer. I've mostly got the sheet working like I want it too. I'm just having a few issues with some minor tweaks I'm trying to do.
Basically, in short, I'm using:
K7-TODAY() to tell me the number of days until the item is due for calibration
Where cell K7 is the date the calibration is due.
I'm using conditional formatting to highlight the cell if the value is less than 20, which is handy, but I wanted more of an action/circumstance than that. For example, a pop-up or warning box.
So I'm also using data validation too, which makes a pop-up if the data in the cell is outside of a specified range. Problem is, that these both work perfectly when you manually enter data into the cell, but if the cell is updated using a formula ie K7-TODAY() the data validation pop-up does not occur (only the conditional formatting)

Has anyone tried to do something similar? Is there a way to make the data validation too work when the cell is updated using a formula?
Or maybe there's a better way to achieve what I'm trying to do.

Come at me!

Cheers
__________________
Signarape!
Reply With Quote
  #2  
Old 10-06-2012, 09:39 AM
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

Not sure if this will work, but try replacing the TODAY function with a reference to cell A1 (or any cell at the top of the page). If you manually type the date in that cell it should make the data validation trigger?

Failing that and without macros, have you considered just using an excel table? That would be easy enough to put filters on to only show ones due for testing, it's no pop up but it's quick and easy
Reply With Quote
  #3  
Old 10-06-2012, 09:54 AM
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

Actually you might need to do the reference to cell A1 (or wherever you put the date) in a DATE formula.
Reply With Quote
  #4  
Old 10-06-2012, 10:20 AM
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

Thanks for your input mate, but I'm still getting the same result.
I'm starting to think that I'm asking too much of the basic data validation tool. I may have to look into the option of using macros to make the sheet behave exactly how i want.
No matter where i put the data, or what cells i reference, data validation doesn't want to warn me about the invalid entry.
Interestingly though, if i click into the cell that I'm trying to attached the warning pop-up to, then click in the formula bar, then click out of it, It gives me the warning I want. It just won't do it when the cell is automatically updated.
It's also frustrating that the warning is only a text box. Ie I can't make the warning reference a cell eg "Item "A1" is due for calibration". It has to be a generic/predefined warning.

ahh well.
__________________
Signarape!
Reply With Quote
  #5  
Old 10-06-2012, 10:43 AM
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

yeah its going to have to be a macro if you really want a popup.

Do you have MS Access? Considering you're keeping a database of info it would work quite well
Reply With Quote
  #6  
Old 10-06-2012, 10:45 AM
PoktRokt's Avatar
Sir AntiLag
Member
 
Join Date: Oct 2011
Location: House of Panties
Posts: 422
Thanks: 28
Thanked 12 Times in 12 Posts
PoktRokt at standard level
Default

Google?


KIJO- Tapatalk
__________________
Blue Evo IX- For Sale- You buy, cheap cheap
Hot Pink Civic- SOLD
Reply With Quote
  #7  
Old 10-06-2012, 11:14 AM
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

Quote:
Originally Posted by PoktRokt View Post
Google?
So far, google has only been slightly more helpful than you.
jEstEr?, mARC, Rexxar and 1 others like this.
__________________
Signarape!
Reply With Quote
  #8  
Old 10-06-2012, 01:28 PM
mARC's Avatar
Perth WRX Old Skool Cool Dude
Member
 
Join Date: Aug 2007
Location: In a House
Posts: 3,589
Thanks: 43
Thanked 30 Times in 28 Posts
mARC at standard level
Default

Keen for you to share what ever you come up with Matt.
__________________
[SIGPIC][/SIGPIC]
Reply With Quote
  #9  
Old 11-06-2012, 09:03 AM
MISSWRXYSTi's Avatar
STI Master
Member
 
Join Date: Dec 2010
Location: Around...
Posts: 836
Thanks: 48
Thanked 13 Times in 9 Posts
MISSWRXYSTi knows their stuff
Default

Quote:
Originally Posted by mattmy99 View Post
Me*

Help a brother out!
I have a register of all the inspection and test equipment that my Quality Control crew in the field have in their procession. The register shows (along with a bunch of other random crap) the date it was last calibrated, and the date it is next due to be calibrated.
I'm not too bad with excel basics, but am far from a programmer. I've mostly got the sheet working like I want it too. I'm just having a few issues with some minor tweaks I'm trying to do.
Basically, in short, I'm using:
K7-TODAY() to tell me the number of days until the item is due for calibration
Where cell K7 is the date the calibration is due.
I'm using conditional formatting to highlight the cell if the value is less than 20, which is handy, but I wanted more of an action/circumstance than that. For example, a pop-up or warning box.
So I'm also using data validation too, which makes a pop-up if the data in the cell is outside of a specified range. Problem is, that these both work perfectly when you manually enter data into the cell, but if the cell is updated using a formula ie K7-TODAY() the data validation pop-up does not occur (only the conditional formatting)

Has anyone tried to do something similar? Is there a way to make the data validation too work when the cell is updated using a formula?
Or maybe there's a better way to achieve what I'm trying to do.

Come at me!

Cheers
Whats your email addy, can send you a few sheets I have set up and had on site that track days till service for LV's and Calibration etc or other things - that have formulas in that you can change to suit...
mattmy99 likes this.
__________________
[COLOR=plum]Scoobies for Boobies ![/COLOR][COLOR=magenta]Yay for Pink Bits [/COLOR]
[COLOR=deepskyblue]One Speed, One Gear...Goooooooooooooooo....or six in my case :P[/COLOR]

//estreladesign.com.au
https://www.facebook.com/EstrelaDesign
Reply With Quote
  #10  
Old 11-06-2012, 10:08 AM
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

Thanks Lisa
PM sent.
__________________
Signarape!
Reply With Quote
Reply

Tags
brain, excel, geeks, lend, needs more flaps


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
Computer Geeks Lend Me Your Cursors mARC Non-WRX Discussion 47 18-09-2011 12:48 AM
Microsoft Excel HELP Wiiha Non-WRX Discussion 2 26-01-2008 08:27 AM



Welcome to Perth-WRX, click here to register!

All times are GMT +8. The time now is 02:16 PM.


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