SELECT
T1.'Severity' AS 'Severity/Probability',
IFNULL(T1.'Count Almost none', "") AS 'Almost none',
IFNULL(T1.'Count Low', "") AS 'Low',
IFNULL(T1.'Count Medium', "") AS 'Medium',
IFNULL(T1.'Count High', "") AS 'High',
IFNULL(T1.'Count Very high', "") AS 'Very high'
FROM T1
WHERE T1.'Severity' IS NOT NULL