Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Data is below. I to apply as a trigger , first and second Highest Max string in an action to open a sheet. Can any one help on this.
2014-Q3 |
2014-Q4 |
2015-Q1 |
2015-Q2 |
2015-Q3 |
tried with this
='(' & MaxString(YearQuarter) & '|' & left(MaxString(YearQuarter),6)&num(right(MaxString(YearQuarter),1)-1) & ')'
working fine now.
let me check with first sorted valeu
May be use this as the select in field trigger:
='(' & MaxString(YearQuarter) & '|' & MaxString(YearQuarter, 2) & ')'
showing error
Would you be able to let us know what error message does it give you?
May be this:
='(' & FirstSortedValue(YearQuarter, -Num#(PurgeChar(YearQuarter, '-Q'), '##')) & '|' & FirstSortedValue(YearQuarter, -Num#(PurgeChar(YearQuarter, '-Q'), '##'), 2) & ')'
tried with this
='(' & MaxString(YearQuarter) & '|' & left(MaxString(YearQuarter),6)&num(right(MaxString(YearQuarter),1)-1) & ')'
working fine now.
let me check with first sorted valeu