Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
MLK MLK is offline
external usenet poster
 
Posts: 81
Default VBA vs Functions

Initially, a worksheet containing a lot of resource info (dates, rates,
hours, etc, etc) was updated manually by one person and I am now slowly
trying to add in functions to automate as much as possible. To improve data
accuracy.

I have a column to identify if a resource is active/inactive and when a
resource becomes inactive, several columns require input, such as date left,
reason left, etc etc. There is a variety of columns to fill out when a
resource leaves.

When inactive, I would like to be able to check the impacted columns to see
if proper values have been entered. Is there a way to do this? If possible,
I would like to notify the person that is entering the data that they forgot
to update something.

I havent found a way to do this with excel functions, but perhaps in VBA?
I am just beginning to learn VBA but dont know enough about it yet.

Thanks for any help provided.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 133
Default VBA vs Functions

Before you do any coding, you may be able to get by with conditional
formatting to highlight the cells that need inputs. Say a reference
(Active, Inactive) cell is C5 and D5 is a cell needing input if the C5
value = "Inactive" then this conditional format formula:

=AND($C5="Inactive",D5 = "")

along with a cell coloring format will give you and the analyst a
visual cue regarding cells that need updating. You can copy the
formatting to all of the cells that are tracked.

There are all kinds of VBA ways to automate the update input process.
Keep the conditional formatting though.

SteveM


MLK wrote:
Initially, a worksheet containing a lot of resource info (dates, rates,
hours, etc, etc) was updated manually by one person and I am now slowly
trying to add in functions to automate as much as possible. To improve data
accuracy.

I have a column to identify if a resource is active/inactive and when a
resource becomes inactive, several columns require input, such as date left,
reason left, etc etc. There is a variety of columns to fill out when a
resource leaves.

When inactive, I would like to be able to check the impacted columns to see
if proper values have been entered. Is there a way to do this? If possible,
I would like to notify the person that is entering the data that they forgot
to update something.

I haven't found a way to do this with excel functions, but perhaps in VBA?
I am just beginning to learn VBA but don't know enough about it yet.

Thanks for any help provided.


  #3   Report Post  
Posted to microsoft.public.excel.programming
MLK MLK is offline
external usenet poster
 
Posts: 81
Default VBA vs Functions

Thanks, I will give that a shot.

"SteveM" wrote:

Before you do any coding, you may be able to get by with conditional
formatting to highlight the cells that need inputs. Say a reference
(Active, Inactive) cell is C5 and D5 is a cell needing input if the C5
value = "Inactive" then this conditional format formula:

=AND($C5="Inactive",D5 = "")

along with a cell coloring format will give you and the analyst a
visual cue regarding cells that need updating. You can copy the
formatting to all of the cells that are tracked.

There are all kinds of VBA ways to automate the update input process.
Keep the conditional formatting though.

SteveM


MLK wrote:
Initially, a worksheet containing a lot of resource info (dates, rates,
hours, etc, etc) was updated manually by one person and I am now slowly
trying to add in functions to automate as much as possible. To improve data
accuracy.

I have a column to identify if a resource is active/inactive and when a
resource becomes inactive, several columns require input, such as date left,
reason left, etc etc. There is a variety of columns to fill out when a
resource leaves.

When inactive, I would like to be able to check the impacted columns to see
if proper values have been entered. Is there a way to do this? If possible,
I would like to notify the person that is entering the data that they forgot
to update something.

I haven't found a way to do this with excel functions, but perhaps in VBA?
I am just beginning to learn VBA but don't know enough about it yet.

Thanks for any help provided.



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
How to convert cell formula functions to code functions Adnan Excel Discussion (Misc queries) 1 October 1st 08 08:30 PM
formula/functions for average and if functions Petu71 Excel Worksheet Functions 2 August 5th 07 08:25 PM
efficiency: database functions vs. math functions vs. array formula nickname Excel Discussion (Misc queries) 2 July 14th 06 04:26 AM
Conversion from Spreadsheet Toolkit functions (ESSV....) to EssBase API functions sujay Excel Programming 0 June 5th 06 10:13 AM
excel functions and User defined functions Kanan Excel Programming 4 May 20th 04 11:21 PM


All times are GMT +1. The time now is 10:17 PM.

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"