Reputation: 2727
I have an excel sheet.
Defined the following as a named range
Sheet1: Range Name = "Complexity"
Complexity Hrs
---------------
Minor 4
Simple 12
Medium 30
Complex 48
I need the following substitution from the named range such that, I get the number for the labels.
Sheet2
====================================
Complexity Hrs
Simple =(Complexity(Simple))
...
...
Complex =(Complexity(Complex))
Such that the result should look like
Sheet2
====================================
Complexity Hrs
Simple 12
...
...
Complex 48
Upvotes: 0
Views: 104