ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Copy past function on cell containing selective formula (https://www.excelbanter.com/excel-programming/410599-copy-past-function-cell-containing-selective-formula.html)

Abid[_3_]

Copy past function on cell containing selective formula
 
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

Bob Phillips

Copy past function on cell containing selective formula
 
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" wrote in message
...
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




Bernie Deitrick

Copy past function on cell containing selective formula
 
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" wrote in message
...
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





All times are GMT +1. The time now is 03:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com