Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
in QlikView I have this Dimension:
= If (YEAR(JWX) *100 + Week(JWX) < (Year(AddMonths(Today(1),-1)) *100 + Week(AddMonths(Today(1),-1)) +1 ) , '<= ' & (Year(AddMonths(Today(1),-1)) *100 + Week(AddMonths(Today(1),-1))), YEAR(JWX) *100 + Week(JWX))
I want to color the current Week.
How do I do this?
Best Regards
if you expand the dimension(click on + symbol) you can see text color or background color
there you can write expression something like if(weekfield=week(today()),red(),while())
I write this = PIck(Match( YEAR(today(1))*100 + Week(today(1))), green()) but it doesn't work
Match function require 2 arguments
=PIck(Match(YEAR(JWX)*100 + Week(JWX), YEAR(today(1))*100 + Week(today(1))), green())
example:=PIck(Match(202402, YEAR(today(1))*100 + Week(today(1))), green())