PC Review


Reply
Thread Tools Rate Thread

Copy past function on cell containing selective formula

 
 
Abid
Guest
Posts: n/a
 
      7th May 2008
Hi,

I am extensive user of Hyperion Smart view. Usuualy I sent out report after
converting them into value as most of the recipeint do not have access to
Hyperion server. This make reports un-editable as all formula e.g. sum,
average etc are also convereted to values. Any idea as to how to write a code
which converts only cells with HSGETformula to value and leave others alone?

Thanks
 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      7th May 2008
Long shot

For Each cell In Selection

If cell.Value Like "*HSGET*" Then

cell.value = cell.Value
End I
Next cell

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Abid" <(E-Mail Removed)> wrote in message
news:153F7803-7C3A-4AF4-9EE7-(E-Mail Removed)...
> Hi,
>
> I am extensive user of Hyperion Smart view. Usuualy I sent out report
> after
> converting them into value as most of the recipeint do not have access to
> Hyperion server. This make reports un-editable as all formula e.g. sum,
> average etc are also convereted to values. Any idea as to how to write a
> code
> which converts only cells with HSGETformula to value and leave others
> alone?
>
> Thanks



 
Reply With Quote
 
Bernie Deitrick
Guest
Posts: n/a
 
      7th May 2008
Abid,

Dim myC As Range
For Each myC In Cells.SpecialCells(xlCellTypeFormulas)
If Left(myC.Formula, 6) = "=HSGET" Then myC.Value = myC.Value
Next myC


HTH,
Bernie
MS Excel MVP


"Abid" <(E-Mail Removed)> wrote in message
news:153F7803-7C3A-4AF4-9EE7-(E-Mail Removed)...
> Hi,
>
> I am extensive user of Hyperion Smart view. Usuualy I sent out report after
> converting them into value as most of the recipeint do not have access to
> Hyperion server. This make reports un-editable as all formula e.g. sum,
> average etc are also convereted to values. Any idea as to how to write a code
> which converts only cells with HSGETformula to value and leave others alone?
>
> Thanks



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
when hyperlink pressed can I copy and past the followed cell coten Rofaiel Microsoft Excel Programming 2 4th Nov 2009 11:26 PM
Function based on blank cell and date past due Paul Microsoft Excel Worksheet Functions 11 23rd Jun 2009 04:06 PM
copy cell B19:J19 Range data’s from sheet1, and to past in sheet2 DJSK Microsoft Excel Programming 4 18th Jun 2008 12:18 PM
i have a problem with copy and past function isam via WindowsKB.com Windows XP General 1 17th Feb 2006 06:36 PM
Windows xp copy and past function =?Utf-8?B?a2VpdGhrag==?= Windows XP Basics 3 13th Dec 2004 02:10 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:34 AM.