Hi and thank you in advance for all the help! I'm just learning SQL querying and have a slight issue I'm hoping someone can help me with.. basically I'm summing data from a column in my database but when it gets to a cell that is a negative value i'd like to have it multiply by -1 to make it a positive value and then continue summing. following is the code I'm writing:SELECT tblTicketsSummary.fldCreate AS 'Booking Rep', COUNT(tblTicketsSummary.fldTicketID) AS 'Total Tickets Booked', COUNT(DISTINCT tblTicketsSummary.fldClientID) AS 'Total Clients Per Booking Person', SUM(tblTicketsRow.fldRowTotal) AS 'Total $' FROM tblTicketsSummary INNER JOIN tblTicketsRow ON tblTicketsSummary.fldTicketID = tblTicketsRow.fldTicketID WHERE (fldDateVoided IS NULL) AND (NOT(fldDateClosed IS NULL)) AND (NOT(fldCreate is NULL)) GetUserDate('AND','fldDateClosed','') AND tblTicketsRow.fldPS = 'S' OR tblTicketsRow.fldPS = 'P' GROUP BY tblTicketsSummary.fldCreate ORDER BY tblTicketsSummary.fldCreateNow, where it says "SUM(tblTicketsRow.fldRowTotal) AS 'Total $'", I'd like to do something like:IF the returned field LIKE '%-%' THEN multiply by -1and i want it to continue adding.Hope that makes sense to someone! thanks again for the help.. :)Mike