************this is before
Option Explicit
Const THEFT_THRESHHOLD = 0.75
Const SEARCH_COLUMN = "A:A"
*************this is after, does not work
Option Explicit
Const THEFT_THRESHHOLD = Worksheets("Sheet1 (2)").Cells(1, 3).Value
Const SEARCH_COLUMN = "A:A"
Zathras helped me with this one but need to change just a tad. I would like have cell C1 hold the value in place of where the 0.75 is in the above one. Can someone tell me what is wrong with second example.
Option Explicit
Const THEFT_THRESHHOLD = 0.75
Const SEARCH_COLUMN = "A:A"
*************this is after, does not work
Option Explicit
Const THEFT_THRESHHOLD = Worksheets("Sheet1 (2)").Cells(1, 3).Value
Const SEARCH_COLUMN = "A:A"
Zathras helped me with this one but need to change just a tad. I would like have cell C1 hold the value in place of where the 0.75 is in the above one. Can someone tell me what is wrong with second example.