Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to combine the duplicate values of the month (April to Apr and June to Jun) in dimension?
Can you post how the month is derived?
Thanks for your response, I got it solved by adding a "Replace" function.
LOAD
[Month],
Replace(
Replace([Month], 'April', 'Apr'),
'June', 'Jun') as Modified_Month
Resident [Summary];