• WSshades

    WSshades

    @wsshades

    Viewing 15 replies - 31 through 45 (of 142 total)
    Author
    Replies
    • in reply to: Go To Cell (Excel 2000) #832937

      Thanks

    • in reply to: Go To Cell (Excel 2000) #832916

      You’re right, thanks. I had it in mind C3 all along. And of course, that is what I put into the formula and the code. The code was a quickie and it shows.

      Tough to change an old person!

      BTW, Hans, usually posting code with the

      Code:
       ...

      works to format on the post. But it doesn’t work here. How is that done on this board?

    • in reply to: Go To Cell (Excel 2000) #832917

      You’re right, thanks. I had it in mind C3 all along. And of course, that is what I put into the formula and the code. The code was a quickie and it shows.

      Tough to change an old person!

      BTW, Hans, usually posting code with the

      Code:
       ...

      works to format on the post. But it doesn’t work here. How is that done on this board?

    • in reply to: Go To Cell (Excel 2000) #832904

      Select cell D5, and go to Format > Conditional Format

      In the left side, choose in the drop down “Formula is” and then in the box, put this:

      =$C$3=”Yes”

      Then in the Format button, choose red and bold.

      For the movement to cell C5, I think, it would require a Change_Event code.

      This might work for you. Right click the tab name, and select View Code, then in upper left, select Worksheet,

      Code:
      Private Sub Worksheet_Change(ByVal Target As Range)
      	If Range("C3").Value = "Yes" Then
      		Range("C5").Select
      	End If
      
      End Sub
    • in reply to: Go To Cell (Excel 2000) #832905

      Select cell D5, and go to Format > Conditional Format

      In the left side, choose in the drop down “Formula is” and then in the box, put this:

      =$C$3=”Yes”

      Then in the Format button, choose red and bold.

      For the movement to cell C5, I think, it would require a Change_Event code.

      This might work for you. Right click the tab name, and select View Code, then in upper left, select Worksheet,

      Code:
      Private Sub Worksheet_Change(ByVal Target As Range)
      	If Range("C3").Value = "Yes" Then
      		Range("C5").Select
      	End If
      
      End Sub
    • in reply to: Shortcut to AutoSum (XP) #832576

      Also, if you select an entire table (CTRL + SHIFT + 8), plus one row below and one column to the right and then hit ALT + =, it will put totals for each row and each column in one stroke.

    • in reply to: Shortcut to AutoSum (XP) #832577

      Also, if you select an entire table (CTRL + SHIFT + 8), plus one row below and one column to the right and then hit ALT + =, it will put totals for each row and each column in one stroke.

    • Select cell A2, then Window > Freeze Pane

      If you want to see column A, then select B2

    • Select cell A2, then Window > Freeze Pane

      If you want to see column A, then select B2

    • in reply to: Validation formula or function? (Excel2000) #822706

      Excel’s built-in formulas tend to be faster, so might consider that.

    • in reply to: Validation formula or function? (Excel2000) #822707

      Excel’s built-in formulas tend to be faster, so might consider that.

    • in reply to: Proper function (XP SR-1) #819814

      Do you have Calculation set to manual?

    • in reply to: Proper function (XP SR-1) #819815

      Do you have Calculation set to manual?

    • in reply to: ASAP Utilities (97-2003) #818022

      I have been using ASAP Utilities for two years – and I agree, it is a daily work horse for me. Great tool.

    • in reply to: ASAP Utilities (97-2003) #818023

      I have been using ASAP Utilities for two years – and I agree, it is a daily work horse for me. Great tool.

    Viewing 15 replies - 31 through 45 (of 142 total)