Excel help

mukeshc

New Member
Joined
Feb 10, 2017
Messages
20
Hi

I am working on some financial data were i am using different method to trend some of the values in a specific column.

i need to specify whatever formula used in the column to derive values to the very next column.

20012002200320042005 DerivedTag
10233443
=65+43-65

<tbody>
</tbody>

if this formula is used tag needed is 2 point trend
11203045=average(45)\average(x)*Ytagg needed is historic growth rate
1120304550if actual value is there(no formula) tag should be Actual.
23201225=x*y*45*zif any other formula then above ones is used tag schoukd be exceptionl.
42if cell is blank then no tagg.

<tbody>
</tbody>

PLs help.
thanks for helping in advance.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
This method uses =FORMULATEXT which I beleive is only present in Excel 2016

1. Create 2 named ranges HGR & TPT both with RefersTo: =0
2. Amend your formulas for Historic Growth Rate and 2 Point Trend like this
=HGR+(average(45)\average(x)*Y)
=TPT+(65+43-65)
(This adds zero to the result but makes it easy to create the condition)

This formula then gives the correct result
=IF(ISFORMULA(E2),IF(LEFT(FORMULATEXT(E2),4)="=HGR","Historic Growth Rate",IF(LEFT(FORMULATEXT(E2),4)="=TPT","Two Point Trend","Exceptional")),IF(ISBLANK(E2),"No Tag","Actual"))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,438
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top