Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
sagaraperera
Creator
Creator

DATE ISSUE

Dear all

how to make  " 'MMM YYYY  as TRANS_DATE,"  using the script given below

my Script

    BCOD,

    MONTH,

    YEAR,

    MONTH2,

    CLA_CODE,

    MONM,

    GROSS_PREMIUM,

date.jpg

I previously used the script,  Date(MONTH,'MMM YYYY') as TRANS_DATE.but the "TRANS_DATE" has not organized properly.

looking forward to a favorable reply.

SAGARA

Labels (1)
6 Replies
MK_QSL
MVP
MVP

Date (MonthStart (TRANS_DATE),'MMM YYYY') as TRANS_DATE

Not applicable

Try this one,

Text(Date(Today(),'MMM YYYY')) as Trans_date

padmanabhan_ram
Creator II
Creator II

Hi Sagara,

Please try using the below code in the script while loading the dashboard.

Date#(FieldName,'MMM\YYYY') as FieldName

or

Date(FieldName,'MMM\YYYY') as FieldName

or

Date#(Date(FieldName,'MMM\YYYY'),'MMM\YYYY') as FieldName

Try the above codes one by one, check which one works for your format.

Regards,

Padmanabhan

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

LOAD

*,

MakeDate(YEAR, MONTH) AS TRANS_DATE

FROM DataSource;

Regards,

Jagan.

gautik92
Specialist III
Specialist III

Try this in Dimension Tab

=Date(TransactionDate,'MMM-YYYY')

Kushal_Chawda

Use monthname(FiledName) as  TRANS_DATE