• Not much information to go on.

    Run the following code and post back comments.

    SELECT

    OrgCode AS UnitState ,

    OrgCode As State,

    COUNT(*) AS Rows_Per_OrgCode

    --IsNull(Count(*), 0) As [SLRP Approved]

    FROM tLookup_StateTable LKState

    Left Join dbo.tbl_Status_Of_ContractRequests_By_State TBL on LKState.OrgCode = TBL.UnitState

    Inner Join dbo.tblContracts C ON C.Contract_ID = TBL.TrackingID

    LEFT OUTER JOIN dbo.tLookup_Incentive Lkp ON C.IT_CODE = Lkp.IT_ID

    Where (TBL.APPROVED > 0) AND (TBL.VERIFIED = 0) AND (TBL.[VERIFICATION FAILED] = 0) AND (TBL.[SYS VERIF - LOSS] = 0)

    AND (C.ContractStatus = 'A') AND C.IT_Code = 'S'

    Group By OrgCode

    “Write the query the simplest way. If through testing it becomes clear that the performance is inadequate, consider alternative query forms.” - Gail Shaw

    For fast, accurate and documented assistance in answering your questions, please read this article.
    Understanding and using APPLY, (I) and (II) Paul White
    Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden