Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Way beyond my SQL abilties
I tried this code
SELECT
StudyCode ,
MAX( Date_ScheduledPulldate) as 'Trial End Date'
FROM
Custom_PullPointDate
WHERE
Recordstatus=1
AND NOT CONTAINS(TestGroup,'SET UP')
AND NOT CONTAINS(TestGroup,'SET DOWN')
AND NOT CONTAINS(TestGroup,'COLLECTION')
GROUP BY StudyCode
as need to exclude al lthe lines where theTestGroup field contains any of these phrases before calc the MAX
Get an error which is Chinese to me. I read CONTAINS was more efficient than LIKE, but cant work out syntax or will that have same error? I could do it long way round and pull everything in and calcuate the MAX within Power Query.
Appreciate any advice.
Solved! Go to Solution.
@mike_asplin , Try using
SELECT
StudyCode,
MAX(Date_ScheduledPulldate) AS 'Trial End Date'
FROM
Custom_PullPointDate
WHERE
Recordstatus = 1
AND TestGroup NOT LIKE '%SET UP%'
AND TestGroup NOT LIKE '%SET DOWN%'
AND TestGroup NOT LIKE '%COLLECTION%'
GROUP BY
StudyCode
Proud to be a Super User! |
|
@mike_asplin , Try using
SELECT
StudyCode,
MAX(Date_ScheduledPulldate) AS 'Trial End Date'
FROM
Custom_PullPointDate
WHERE
Recordstatus = 1
AND TestGroup NOT LIKE '%SET UP%'
AND TestGroup NOT LIKE '%SET DOWN%'
AND TestGroup NOT LIKE '%COLLECTION%'
GROUP BY
StudyCode
Proud to be a Super User! |
|
perfect thanks
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.