Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

current year and month

Hi Community,

   i want to show current year and current month by opening a document with out using MAX function

5 Replies
Not applicable
Author

You can Take a text box and write below expression in it to display current year and month:

For Current year:

=Year(Today())

For Current Month:

=Month(Today())

I hope this is what you want..!

ThornOfCrowns
Specialist II
Specialist II

You can get the current year and month by using Year(Now()) and Month(Now())

amit_saini
Master III
Master III

Hi Kannuri,

In a Text box use this:

='[ Updated at ' & timestamp(reloadtime(), 'hh:mm on MMM DD, YYYY') &' ]'

Thanks,

AS

MK_QSL
MVP
MVP

Year(Today())

Month(Today())

its_anandrjs

You can Write below in any text box or in variables

For Year >> =Year( Now( ) )

For Month >> =Month( Now( ) )

And also you use

=Year(Today( ) )

=Month(Today( ) )