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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
mike_asplin
Helper V
Helper V

Trying to use SQL to calculate a max excluding certain lines

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. 

 

---------- Message ----------
Microsoft SQL: Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'Custom_PullPointDate' because it is not full-text indexed.
 
 
 

 

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
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




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

2 REPLIES 2
bhanu_gautam
Super User
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




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






perfect thanks

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.