Return Colum headers based on positive and negative cell value

Fahad2898

New Member
Joined
Apr 7, 2019
Messages
4
Hi

For the last hour or so I have been trying to find an answer through youtube but just can't it. Really appreciate if some one can help me with this, I just created a table from randon figures which represent the actual table at work, so the modules are products and the dis module colum is the discount given to the particular prodct it is next to, and at what time in the future that negative figure will change into zero if the discount is no longer there, what I am trying to do is drop down list of all rows and when I choose say row 6, I will get 2 drob down cells, one representing all the headers that has a positive value and the other one all the headers that has a negative value

6Module 2Disc Module 2
Module 4Disc Module 4

<tbody>
</tbody>


Module 1Dis Module 1Module 2Dis Module 2Module 3Dis Module 3Module 4Dis Module 4Total
120020
210-55
310-520-520
410010020
550505015
610010-713
710010
820-1020-1020
910010020
1030-1020
1120202060
1210-55

<tbody>
</tbody>
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I think worksheet event code could do what you want. I don't know what you intend to do with the values once you return them so I wwill illustrate by using a message box. Assume the dropdown list is in Range("A1")


Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Application.EnableEvents = False
    If Not Intersect(Target, Range("A1")) Is Nothing Then
        For Each c In Cells(Target.Value, 2).Resize(, 8) 'assumes data starts in column B.
            If c.Value > 0 Then txt = txt & vbLf & c.Value & "   " & c.Offset(, 1).Value
        Next
        MsgBox txt
    End If
Application.EnableEvents = True
End Sub
 
Upvote 0
Thanks, Appreciate your help.

To be honest I was hoping if the answer was a little bit easier and didn't involve VBA as my knowledge is almost none.

As to the reason or what I want it for, each row represnt a live quote and this whole function or what I am trying to do will be added to a dashboard so when we are looking for the value numbers of a quote we can also find what products are included or what discount are given.

Thanks again.
 
Upvote 0
Thanks, Appreciate your help.

To be honest I was hoping if the answer was a little bit easier and didn't involve VBA as my knowledge is almost none.

As to the reason or what I want it for, each row represnt a live quote and this whole function or what I am trying to do will be added to a dashboard so when we are looking for the value numbers of a quote we can also find what products are included or what discount are given.

Thanks again.

I am not that good with formulas these days. I used them frequently back in the twentieth century when I was still working, but after I learned VBA my usage has dropped to almost nil. You would need a pretty elaborate IF() formula to pull the values into another sheet using a drop down. It can probably be done but it would take me a lot of trial an error to get it right because of my lack of usage. Maybe somebody else more skilled in that area will jump in and give you some assistance with it.
 
Upvote 0
Maybe you could work with something like this.
It assumes that all your Module 1, Module 2, etc will be positive numbers.
The formula in B1 is an array formula and must be entered with CTRL-SHIFT-ENTER.
Formula in C1 just ENTER.
Drag formulas down as needed.
Excel Workbook
ABCDEFGHIJK
16Module 2Dis Module 2
2Module 4Dis Module 4
3
4
5Module 1Dis Module 1Module 2Dis Module 2Module 3Dis Module 3Module 4Dis Module 4Total
6
7120020
8210-55
9310-520-520
10410010020
11550505015
12610010-713
13710010
14820-1020-1020
15910010020
161030-1020
171120202060
181210-55
Sheet




<colgroup><col width="100"></colgroup>
 
Upvote 0
Thank you very much.

it wourks abosultey perfect with the example above and your formula, unfortunatley when I tried to copy it with my data which is a table, i think i got stuck with the rows section at the end, the message that there is a problem with this formula keeps coming up.

IFERROR(INDEX(RCFDATA[[#Headers],[TTT NG - Entry Level]:[Old Agreement License]],SMALL(IF(INDEX(RCFDATA[[TTT NG - Entry Level]:[Old Agreement License]],MATCH(Dashboard!N18,RCFDATA[Order],0),0)>0,COLUMN(RCFDATA[[#Headers],[TTT NG - Entry Level]:[Old Agreement License]])-COLUMN(RCFDATA[[#Headers],[TTT NG - Entry Level]]+1),ROWS(RCFDATA[[#Headers],[TTT NG - Entry Level]]:RCFDATA[[#Headers],[TTT NG - Entry Level]]))),"")
 
Upvote 0
Using table nomenclature with absolute cell references can be tricky (at least for me).
What you might try is to set up Excel not to use table names in formulas that will allow you to enter the formula as is with cell references. The other option is to turn your table back into a range, enter the formula and then turn the range back into a table.

To setup the first option of not using table names:
Go to FILE in the ribbon.
-Options
-Formulas
-Working with formulas
-Then uncheck the box by "Use table name in formulas"
-OK

If you want to use Table nomenclature then take a look at this site on how to enter absolute references for a formula in an Excel table.
https://exceloffthegrid.com/excel-tables-absolute-references/
 
Upvote 0
Thank you very much, you are a lifesaver, that worked exactly as I intended it to. Changed it to range and back to table when the formula worked.

Using table nomenclature with absolute cell references can be tricky (at least for me).
What you might try is to set up Excel not to use table names in formulas that will allow you to enter the formula as is with cell references. The other option is to turn your table back into a range, enter the formula and then turn the range back into a table.

To setup the first option of not using table names:
Go to FILE in the ribbon.
-Options
-Formulas
-Working with formulas
-Then uncheck the box by "Use table name in formulas"
-OK

If you want to use Table nomenclature then take a look at this site on how to enter absolute references for a formula in an Excel table.
https://exceloffthegrid.com/excel-tables-absolute-references/
 
Upvote 0
Your welcome. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,897
Messages
6,122,141
Members
449,066
Latest member
Andyg666

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