I suppose you want to show some column value depending on some condition and also some other column value depending on some condition combined with the 1st column.
e.g.
SELECT someIdNumber,
(CASE price WHEN 100 THEN somecolumn ELSE 'None' END) +
(CASE netAmount WHEN 100 THEN someothercolumn ELSE 'All' END)
AS SomeExpression
FROM yourtable
It can be done using multiple CASE statements and combining them with a +. But you must be sure that both the data types of these CASE statement outputs are same.