The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have a local ODBC driver for ServiceNow and I am trying to pull only the sc_req_item rows that have a matching [task] dv_parent:
let
ODBCQueryString = """SELECT * FROM sc_req_item#(lf)WHERE (number IN (""" & Text.Combine(Table.Column(Table.SelectRows(Tasks, each [dv_parent] <> null and [dv_parent] <> ""), "dv_parent"), """,""") & """)) AND (sys_created_on >= TIMESTAMPADD(SQL_TSI_YEAR, -5, NOW()))""",
Source = Odbc.Query("dsn=ServiceNow", ODBCQueryString)
in
Source
From the Tasks table I am selecting rows that dv_parent is not empty, converting to list and combining with '","'. For a short example, the returning string is:
"SELECT * FROM sc_req_item
WHERE (number IN ("RITM0247413","RITM0383048","RITM0349498")) AND (sys_created_on >= TIMESTAMPADD(SQL_TSI_YEAR, -5, NOW()))"
But I am getting the following error:
That list of RITM numbers may change and I need to dynamically create that list
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
203 | |
82 | |
65 | |
48 | |
38 |