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.

[TABLE="width: 300"]
<tbody>[TR]
[TD] 2001[/TD]
[TD]2002[/TD]
[TD]2003[/TD]
[TD]2004[/TD]
[TD]2005 Derived[/TD]
[TD]Tag[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]23[/TD]
[TD]34[/TD]
[TD]43[/TD]
[TD][TABLE="width: 100"]
<tbody>[TR]
[TD]=65+43-65[/TD]
[/TR]
[TR]
[/TR]
</tbody>[/TABLE]

[/TD]
[TD]if this formula is used tag needed is 2 point trend[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]20[/TD]
[TD]30[/TD]
[TD]45[/TD]
[TD]=average(45)\average(x)*Y[/TD]
[TD]tagg needed is historic growth rate[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]20[/TD]
[TD]30[/TD]
[TD]45[/TD]
[TD]50[/TD]
[TD]if actual value is there(no formula) tag should be Actual.[/TD]
[/TR]
[TR]
[TD]23[/TD]
[TD]20[/TD]
[TD]12[/TD]
[TD]25[/TD]
[TD]=x*y*45*z[/TD]
[TD]if any other formula then above ones is used tag schoukd be exceptionl.[/TD]
[/TR]
[TR]
[TD]42[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]if cell is blank then no tagg.[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

PLs help.
thanks for helping in advance.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
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,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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