#1   Report Post  
Posted to microsoft.public.excel.misc
Rich Stanek
 
Posts: n/a
Default Data Input

I need a quick solution to a data input issue. I have a sales forecast where
the "end user" had to type sales projections for the rest of the year. They
input the raw number, instead of the formula with the number. Example 5
instead of =5. Since I am using hyperion essbase it will remove all of the
forecast work unless it recogonizes the cell as a formula.

Question? Does anyone know of a quick way of turning 5 into =5 in the
cells?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
Duke Carey
 
Posts: n/a
Default Data Input

I've had a fair amount of experience with Essbase. There's different ways to
skin this.

I usually have a retreive area off to the right and then formulas to the
left that reference the retreived values. Done this way, the users don't
risk losing their input because the retrieve can be performed only by first
selecting the range with the Essbase row & column headers.

If that's not a viable way to go....
Where are the forecast numbers being entered, relative to the retrieve area?
Are they within it or outside of it? If outside, you can simply select the
retrieve range and then use the Essbase menu retrieve to refresh your data.
Essbase will not affect areas outside the selected range.

If the forecast numbers are within the retrieve area, you'll need a macro to
convert each value to a formula. The question is: Where will the macro
reside? Are you doing this forecasting within a template, or does each user
do an ad hoc spreadsheet?

If it's in a template, you can create the macro in the template and all
users will have access to it. If not a template, you've got something of a
mess on your hands.

At any rate, here's the macro. It requires the user to select the cells
that are to be modified before running the macro

Sub CreateFormulas()
Dim rng As Range

For Each rng In Selection
If WorksheetFunction.IsNumber(rng.Value) Then
If Not rng.HasFormula Then
rng.Formula = "=" & rng.Value
End If
End If
Next

End Sub

For information on installing the code see
Getting Started with Macros and User Defined Functions

http://www.mvps.org/dmcritchie/excel/getstarted.htm


"Rich Stanek" wrote:

I need a quick solution to a data input issue. I have a sales forecast where
the "end user" had to type sales projections for the rest of the year. They
input the raw number, instead of the formula with the number. Example 5
instead of =5. Since I am using hyperion essbase it will remove all of the
forecast work unless it recogonizes the cell as a formula.

Question? Does anyone know of a quick way of turning 5 into =5 in the
cells?

Thanks

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
Variable input to populate data fields csinvestor Excel Discussion (Misc queries) 3 September 9th 05 09:00 AM
Need to input data in excel that will print to pre printed sheets Q Setting up and Configuration of Excel 2 June 17th 05 09:06 PM
input text at front of field that contains data Steve M Excel Discussion (Misc queries) 3 May 16th 05 12:28 AM
Sort pages? David Excel Discussion (Misc queries) 15 May 13th 05 11:33 PM
Running Data Table using an input that triggers DDE linked data [email protected] Excel Discussion (Misc queries) 1 December 16th 04 11:56 AM


All times are GMT +1. The time now is 11:42 PM.

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

About Us

"It's about Microsoft Excel"