I have multiple lists that are related. I would like to produce a pie chart or column chart to display the number of programs by status and by program type. Status is a choice field. Program type is a number that is the ID column in a Services list. Here is a small portion of programs.

and this is Services

I saw an example of getting the choice field in and that seems ok, but the lookup gives me errors.
this is what I am using to get the full status text in my 'Items':
AddColumns(
Programs,
"Full Status",
Status.Value
)
In the result I can see the full status text value correctly.
What I'd like to do is show the number of programs in each status and by type.
I tried adding a column to the AddColumns using a Lookup, but it gives me errors and I tried a GroupBy to group by the status thinking i could do the lookup in the Series Legend.
I think I can plot this either as a pie chart or column chart, but could be wrong...not sure if the Items statement would be the same...
Can someone help?