SQL code to find upper case values

Hi guys,
I am writing a select statement that looks through a column with guid strings and returns only those values that contain upper case symbols. The column contains many strings containing both upper and lower case symbols, but I want to extract only those with upper case. I am using MS SQL Management Studio. Your help will be appreciated!
Thanks.
I am writing a select statement that looks through a column with guid strings and returns only those values that contain upper case symbols. The column contains many strings containing both upper and lower case symbols, but I want to extract only those with upper case. I am using MS SQL Management Studio. Your help will be appreciated!
Thanks.
Answers
Note:
jigsaw puzzle
FROM (VALUES --This represents the values in a table
(1,'02830916-85AB-47FF-A2CA-2228441840EE','All UPPER CASE')
,(2,'02830916-85ab-47ff-a2ca-2228441840ee','All LOWER CASE')
,(3,'02830916-85aB-47ff-a2ca-2228441840ee','One UPPER CASE')
)v(RowNum, GUIDString, Explanation)
WHERE GUIDString LIKE '%[A-F]%' COLLATE Latin1_General_BIN
;
FROM (VALUES --This represents the values in a table
(1,'02830916-85AB-47FF-A2CA-2228441840EE','All UPPER CASE')
,(2,'02830916-85ab-47ff-a2ca-2228441840ee','All LOWER CASE')
,(3,'02830916-85aB-47ff-a2ca-2228441840ee','One UPPER CASE')
)v(RowNum, GUIDString, Explanation)
WHERE GUIDString LIKE '%[A-F]%' COLLATE Latin1_General_BIN
;