>>377
数値変換はマクロ書かないと厳しい。JSマクロだとこんな感じ↓
Document.Selection.Text = Document.Selection.Text.replace(/\(([1-4],)([1-5])\)/g, function($0,x,y){ return "(" + x + (6 - y) + ")"; });

(1,5) → (1,1)
(2,2) → (2,4)
(3,0) → (3,0) ※0は対象外なので変換されない
(4,1) → (4,5)