Changing information in a datagrid to show text not numbers.
Changing information in a datagrid to show text not numbers.
(OP)
I am running a select statement in a visual basic program. I pull in the information in an adodc into a data grid. I have 6 columns and in one of the columns the infromation that is being pulled in is in a number format (0,1,2,3,4). They represent a level of urgency 0 = Low and 1 = Medium and so on. I need to changed the information from the number to the text. My statement is this Adodc1.RecordSource = "SELECT HPD_HelpDesk.Submitted_By, DateAdd(s,HPD_HelpDesk.Assign_Time,'12/31/1969 18:00:00 PM') as Ticket_Assigned_Time, HPD_HelpDesk.Case_ID_, HPD_HelpDesk.SubItem, HPD_HelpDesk.Assigned_To_Individual_, HPD_HelpDesk.Priority FROM REMEDY_SUPPORT.dbo.HPD_HelpDesk " & _
"WHERE (HPD_HelpDesk.Assigned_To_Individual_='Leticia Najera' OR HPD_HelpDesk.Assigned_To_Individual_='Loretta G. Villarreal' OR HPD_HelpDesk.Assigned_To_Individual_='Virginia S. Nevarez' OR HPD_HelpDesk.Assigned_To_Individual_='Robert G. Villa' OR HPD_HelpDesk.Assigned_To_Individual_='Calvin D. Drummond') " & _
"AND (HPD_HelpDesk.SubItem <> 'New Printer ID Assignments' AND HPD_HelpDesk.SubItem <> 'EFS Install' AND HPD_HelpDesk.SubItem <> 'Changes to Location Table' AND HPD_HelpDesk.SubItem <> 'Needs more Instant Data Reports Added to site' AND HPD_HelpDesk.SubItem <> 'Setup') " & _
"AND (DATEADD(s, Assign_Time, '12/31/1969 18:00:00 PM') > '" & Date & "')" & "ORDER BY DATEADD(s, Assign_Time, ' 12/31/1969 18:00:00 PM ') DESC"
Adodc1.Refresh
The table that has the information in it it the Priority table. Any help would be appreciated, i am new to VB.
"WHERE (HPD_HelpDesk.Assigned_To_Individual_='Leticia Najera' OR HPD_HelpDesk.Assigned_To_Individual_='Loretta G. Villarreal' OR HPD_HelpDesk.Assigned_To_Individual_='Virginia S. Nevarez' OR HPD_HelpDesk.Assigned_To_Individual_='Robert G. Villa' OR HPD_HelpDesk.Assigned_To_Individual_='Calvin D. Drummond') " & _
"AND (HPD_HelpDesk.SubItem <> 'New Printer ID Assignments' AND HPD_HelpDesk.SubItem <> 'EFS Install' AND HPD_HelpDesk.SubItem <> 'Changes to Location Table' AND HPD_HelpDesk.SubItem <> 'Needs more Instant Data Reports Added to site' AND HPD_HelpDesk.SubItem <> 'Setup') " & _
"AND (DATEADD(s, Assign_Time, '12/31/1969 18:00:00 PM') > '" & Date & "')" & "ORDER BY DATEADD(s, Assign_Time, ' 12/31/1969 18:00:00 PM ') DESC"
Adodc1.Refresh
The table that has the information in it it the Priority table. Any help would be appreciated, i am new to VB.
RE: Changing information in a datagrid to show text not numbers.
RE: Changing information in a datagrid to show text not numbers.
CODE
DateAdd(s,HPD_HelpDesk.Assign_Time,'12/31/1969 18:00:00 PM') as Ticket_Assigned_Time, _
HPD_HelpDesk.Case_ID_, _
HPD_HelpDesk.SubItem, _
HPD_HelpDesk.Assigned_To_Individual_, _
HPD_HelpDesk.Priority, _
Priority.PriorityDescription
FROM REMEDY_SUPPORT.dbo.HPD_HelpDesk LEFT JOIN REMEDY_SUPPORT.dbo.Priority ON HPD_HelpDesk.Priority = REMEDY_SUPPORT.dbo.Priority _
Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
RE: Changing information in a datagrid to show text not numbers.
RE: Changing information in a datagrid to show text not numbers.
FROM REMEDY_SUPPORT.dbo.HPD_HelpDesk LEFT JOIN REMEDY_SUPPORT.dbo.Priority ON HPD_HelpDesk.Priority = REMEDY_SUPPORT.dbo.Priority.Priority
(Please note that the column name (Priority) was left out in the original post)
The text column is then appended to the results set, by including that column (Priority.PriorityDescription) in the SELECT clause of the SQL statement.
Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein