Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need an expression for Max of dateid for system = 'XYZ'...
MAX({<System = {"XYZ"}>}(date( Date ID])))..it is not displaying the date .Can anyone help ?
What is it displaying?
it is not displaying anything...showing empty
Can you post a sample qvw?
You have a right bracket ] with no matching left bracket.
MAX({<System = {'X','Y','Z'}>}[Date ID]) or
MAX({<System = {'XYZ'}>}[Date ID])
Got the answer....MAX({<System = {'XYZ'}>}[Date ID]) ..also i need to asdd the period some thing like this format ..
01/01/2013,PeriodP1 ....I have the period field...
How can we assign period ?
Do you mean that you want to filter the results to show where PeriodP1 = '01/01/2013'?
If so, you need to use syntax similar to :
MAX(
{
<System={'XYZ'},
PeriodP1={$(vDate)}
}
[Date ID]
)
where vDate is set to the filter date. But be careful - dates are trickly to get right!
What is the comparison criteria for PeriodP1?