i am having a very difficult time trying to get a chart to show actual vs target. excel pretty simple.... in Access not so much. also want to show totals See PIC and attached

qry_AssetTotals1
Code:
SELECT tbl_NewAsset.ID, tbl_NewAsset.MonthID, Sum([tbl_NewAsset]![FeeBasedAssetTotals]+[tbl_NewAsset]![VA]+[tbl_NewAsset]![MutFundAlt]+[tbl_NewAsset]![InvestBrok]+[tbl_NewAsset]![AnnuityFixDefImm]) AS Totals, IIf([Source]="Existing" Or [Source]="Spouse Existing","Existing",IIf([Source]="Child Existing" Or [Source]="Child New","Child",IIf([Source]="Existing Client Referral" Or [Source]="Cold New Prospects","New"))) AS SourceTotalFROM tbl_NewAsset
GROUP BY tbl_NewAsset.ID, tbl_NewAsset.MonthID, IIf([Source]="Existing" Or [Source]="Spouse Existing","Existing",IIf([Source]="Child Existing" Or [Source]="Child New","Child",IIf([Source]="Existing Client Referral" Or [Source]="Cold New Prospects","New")))
HAVING (((tbl_NewAsset.MonthID) Between [Forms]![frm_NewAssetMain]![From] And [Forms]![frm_NewAssetMain]![To]));
qry_AssetTotals2
Code:
SELECT qry_AssetTotals1.MonthID, Sum(qry_AssetTotals1.Totals) AS SumOfTotals, qry_AssetTotals1.SourceTotal, IIf([SourceTotal]="New",12000000,IIf([SourceTotal]="Existing",12000000,IIf([SourceTotal]="Child",1000000))) AS Goal
FROM qry_AssetTotals1
GROUP BY qry_AssetTotals1.MonthID, qry_AssetTotals1.SourceTotal, IIf([SourceTotal]="New",12000000,IIf([SourceTotal]="Existing",12000000,IIf([SourceTotal]="Child",1000000)));
Chart
MonthID |
SumOfTotals |
SourceTotal |
Goal |
January, 2023 |
$40,001.00 |
Child |
$1,000,000.00 |
January, 2023 |
$2,748,000.00 |
Existing |
$12,000,000.00 |
January, 2023 |
$834,000.00 |
New |
$12,000,000.00 |
February, 2023 |
$170,223.71 |
Child |
$1,000,000.00 |
February, 2023 |
$1,638,000.00 |
Existing |
$12,000,000.00 |
February, 2023 |
$3,878,658.00 |
New |
$12,000,000.00 |
March, 2023 |
$609,292.00 |
Child |
$1,000,000.00 |
March, 2023 |
$1,938,591.00 |
Existing |
$12,000,000.00 |
March, 2023 |
$1,465,000.00 |
New |
$12,000,000.00 |
April, 2023 |
$953,000.00 |
Existing |
$12,000,000.00 |
April, 2023 |
$50,000.00 |
New |
$12,000,000.00 |
May, 2023 |
$1,165,000.00 |
Existing |
$12,000,000.00 |
May, 2023 |
$1,900,000.00 |
New |
$12,000,000.00 |