Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
LisaRoby
Frequent Visitor

script help

The following is the script I need to add to:

select sum(Audit_Count_Fails) Audit_Count_Fails,

                        sum(Total_Counts) Total_Counts,

                        Count_Date

                   from (select Count_Date,

                                Unit_QTY,

                                Counted_Qty,

                                Count_Type,

                                Total_Count_Fails,

                                case when Count_Type = 'A' then sum(Total_Count_Fails)

                                     else 0

                                end Audit_Count_Fails,

                                Total_Counts

                           from (select to_date(to_char(ch.cntdte, 'mm/dd/yyyy'), 'mm/dd/yyyy') Count_Date,

                                        ch.cntqty Counted_Qty,

                                        ch.untqty Unit_QTY,

                                        ch.cnttyp Count_Type,

                                        case when ch.cntqty - ch.untqty = 0 then 0

                                             else 1

                                        end Total_Count_Fails,

                                        case when ch.cntqty is not null then 1

                                             else 0

                                        end Total_Counts

                                   from R09CABPRD.cnthst ch

                                  where ch.cntqty is not null)

                          group by Count_Date,

                                Counted_Qty,

                                Unit_QTY,

                                Count_Type,

                                Total_Count_Fails,

                                Total_Counts)

 

I want to add another field to it (wh_id):

 

select sum(Audit_Count_Fails) Audit_Count_Fails,
sum(Total_Counts) Total_Counts,
Count_Date,
wh_id
from (select Count_Date,
Unit_QTY,
Counted_Qty,
Count_Type,
Total_Count_Fails,
case when Count_Type = 'A' then sum(Total_Count_Fails)
else 0
end Audit_Count_Fails,
Total_Counts
from (select to_date(to_char(ch.cntdte, 'mm/dd/yyyy'), 'mm/dd/yyyy') Count_Date,
ch.cntqty Counted_Qty,
ch.untqty Unit_QTY,
ch.cnttyp Count_Type,
ch.wh_id Site,
case when ch.cntqty - ch.untqty = 0 then 0
else 1
end Total_Count_Fails,
case when ch.cntqty is not null then 1
else 0
end Total_Counts
from R09CABPRD.cnthst ch
where ch.cntqty is not null)
group by Count_Date,
Counted_Qty,
Unit_QTY,
Count_Type,
Total_Count_Fails,
wh_id,
Total_Counts)
group by Count_Date

                  

 

But I keep getting the following error when I run it:

 

Status 511 - Database Error: -904 - ORA-00904: "WH_ID": Invalid identifier

 

This type of script is a bit above my level at this time so I ma not sure what I am doing wrong. The reason for the add is I have three sites I am creating reports/views for and this is the only way I have a seperating them out.

 

TIA Lisa

2 REPLIES 2
edhans
Super User
Super User

@LisaRoby that is not DAX or M, but SQL of some sort, probably from Oracle. You need to go to a Oracle forum and ask that question.



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

I am trying to put this in Power BI and this is the message I am getting when I run the query. I am switching to the azure cloud and it requires MS SQL, not Oracle SQL. So I am trying to convert what I have in Oracle to MS SQL. Oracle cannot help me. I have tried finding the answer on goggle but have hit a dead end.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors