• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "I have a stupid question"

Collapse

  • Pondlife
    replied
    Originally posted by TheFaQQer View Post
    Oops I only meant that BoredBloke is a better VBA programmer than I am. Mainly because I'm not a VBA programmer but can blag a few things here and there
    You've not read Suity's new rules, have you.

    Leave a comment:


  • mudskipper
    replied
    Originally posted by TheFaQQer View Post
    Oops I only meant that BoredBloke is a better VBA programmer than I am. Mainly because I'm not a VBA programmer but can blag a few things here and there
    The hallmark of a true contractor.

    Don't forget to invoice.

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Originally posted by TheFaQQer View Post
    Oops I only meant that BoredBloke is a better VBA programmer than I am. Mainly because I'm not a VBA programmer but can blag a few things here and there
    Well you're blagging was very useful

    Leave a comment:


  • TheFaQQer
    replied
    Originally posted by LisaContractorUmbrella View Post
    That hurts
    Oops I only meant that BoredBloke is a better VBA programmer than I am. Mainly because I'm not a VBA programmer but can blag a few things here and there

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Originally posted by TheFaQQer View Post
    It was a bug in Lisa's conditional formatting

    I tried to send her your way, though, but to no avail
    That hurts

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Originally posted by TheFaQQer View Post
    It was a bug in Lisa's conditional formatting

    I tried to send her your way, though, but to no avail
    It was yes. I had a bug

    All sorted now though

    Leave a comment:


  • TheFaQQer
    replied
    Originally posted by BoredBloke View Post
    FWIW it seemed to work ok when I tried it
    It was a bug in Lisa's conditional formatting

    I tried to send her your way, though, but to no avail

    Leave a comment:


  • BoredBloke
    replied
    FWIW it seemed to work ok when I tried it

    =ValidPostCode(B3)

    If you wanted to use it in your VBA rated that having a User defined Function on the worksheet you'd have to loop through the postcodes and throw each one to your function.


    for i = 2 to lLR
    cells(i,15) = ValidPostCode(cells(i,14))
    Next i

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Originally posted by TheFaQQer View Post
    I've emailed you my spreadsheet
    You're the best

    Leave a comment:


  • TheFaQQer
    replied
    Originally posted by LisaContractorUmbrella View Post
    No worries TF - thanks for posting

    Nope still doesn't work. The macro just returns a blank in the field that I would expect to find the formula
    I've emailed you my spreadsheet

    Leave a comment:


  • LisaContractorUmbrella
    replied
    No worries TF - thanks for posting

    Nope still doesn't work. The macro just returns a blank in the field that I would expect to find the formula

    Leave a comment:


  • TheFaQQer
    replied
    Sorry, missed your email.

    Assuming you want a macro to insert a new column in column P (data being in column O), then validate the post codes using the function, try

    Code:
    Sub PostCode()
        Range("P1").Select
        Selection.EntireColumn.Insert
        ActiveCell.FormulaR1C1 = "=IF(ValidPostCode(RC[-1]),""OK"",""Incorrect"")"
        Range("P1").Select
        Selection.Copy
        Range("O1").Select
        Selection.End(xlDown).Select
        ActiveCell.Offset(0, 1).Activate
        Range(Selection, Selection.End(xlUp)).Select
        ActiveSheet.Paste
        Application.CutCopyMode = False
    End Sub
    That would stop if there are any blanks in the column, though.

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Morning -sorry to be a bother but I have a teeny problem with this now

    The calculation incorporating the expression works perfectly except when I come to incorporate it in a macro - what have I missed???

    Sub Postcode()
    '
    ' Postcode Macro
    ' Macro4
    '

    '
    Columns("P:P").Select
    Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
    Range("P2").Select
    ActiveCell.FormulaR1C1 = "=IF(ValidPostCode(RC[-1]),""OK"",""Incorrect"")"
    Range("P3").Select
    End Sub

    Leave a comment:


  • LisaContractorUmbrella
    replied
    Originally posted by mudskipper View Post
    That's good. And do you understand it now?
    Absolutely

    Leave a comment:


  • mudskipper
    replied
    Originally posted by LisaContractorUmbrella View Post
    It works Thanks for all your help guys - really appreciated
    That's good. And do you understand it now?

    Leave a comment:

Working...
X