nathanwiley
Technical User
Hello,
I have a challenge again...
I have the following tables.
{vwAVMembersAll}
{vwAVEAPApplications}
{vwAVEAPClaims}
I need to pull specific data, let me explain... I work for the Energy Assistance Program that helps pay on qualifying families on their utility bills.
I have new funding that can only be applied to either Elderly 60+ individuals and or individuals who are disabled with the utility bills are in their name.
(It can be elderly 60+ or someone who is disabled with the utilities in their name – if they are both disabled and elderly this is ok)
I Need to see in the house is disabled or elderly with the utilities in their name, so the billing name on the claim table should match a household members name.
We have {vwAVEAPClaims.BillToFirstName} showing the first name of the bill and we have {vwAVEAPClaims.BillToLastName} showing the last name of the bill. These need to match one or both of these tables {vwAVMembersAll.LastName} and {vwAVMembersAll.FirstName} while matching either Eldery 60+ or disabled 18 or older or both elderly and disabled.
I had the following forula's but they don't work because I don't know the coding to make the information look for each other.
{vwAVEAPApplications.MatrixPoints} >= 12 and
{vwAVEAPApplications.EAPApplicationStatus} = "Approved" and
{@Age} >= 18 and
{vwAVMembersAll.Disabled}
{vwAVEAPApplications.ProgramYear} >= 2011 and
{vwAVEAPClaims.BillToFirstName} = ""
{vwAVApplications.ApprovedForEAP} and
{vwAVEAPApplications.ProgramYear} = 2011 and
(
(TRIM({{vwAVMembersAll.FirstName}}) = "" OR
ISNULL({{vwAVEAPClaims.BillToFirstName}}))
OR
(TRIM({{vwAVMembersAll.LastName}}) = "" OR
ISNULL({{vwAVEAPClaims.BillToLastName}}))
OR
(TRIM({{vwAVMembersAll.Disabled}}) = "true" OR
ISNULL({{vwAVMembersAll.Disabled}}))
)
Thanks for any help you can offer, I hope I was clear in what I need.
I have a challenge again...
I have the following tables.
{vwAVMembersAll}
{vwAVEAPApplications}
{vwAVEAPClaims}
I need to pull specific data, let me explain... I work for the Energy Assistance Program that helps pay on qualifying families on their utility bills.
I have new funding that can only be applied to either Elderly 60+ individuals and or individuals who are disabled with the utility bills are in their name.
(It can be elderly 60+ or someone who is disabled with the utilities in their name – if they are both disabled and elderly this is ok)
I Need to see in the house is disabled or elderly with the utilities in their name, so the billing name on the claim table should match a household members name.
We have {vwAVEAPClaims.BillToFirstName} showing the first name of the bill and we have {vwAVEAPClaims.BillToLastName} showing the last name of the bill. These need to match one or both of these tables {vwAVMembersAll.LastName} and {vwAVMembersAll.FirstName} while matching either Eldery 60+ or disabled 18 or older or both elderly and disabled.
I had the following forula's but they don't work because I don't know the coding to make the information look for each other.
{vwAVEAPApplications.MatrixPoints} >= 12 and
{vwAVEAPApplications.EAPApplicationStatus} = "Approved" and
{@Age} >= 18 and
{vwAVMembersAll.Disabled}
{vwAVEAPApplications.ProgramYear} >= 2011 and
{vwAVEAPClaims.BillToFirstName} = ""
{vwAVApplications.ApprovedForEAP} and
{vwAVEAPApplications.ProgramYear} = 2011 and
(
(TRIM({{vwAVMembersAll.FirstName}}) = "" OR
ISNULL({{vwAVEAPClaims.BillToFirstName}}))
OR
(TRIM({{vwAVMembersAll.LastName}}) = "" OR
ISNULL({{vwAVEAPClaims.BillToLastName}}))
OR
(TRIM({{vwAVMembersAll.Disabled}}) = "true" OR
ISNULL({{vwAVMembersAll.Disabled}}))
)
Thanks for any help you can offer, I hope I was clear in what I need.