Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

=if(Match(Year_V, '2018') ,[Opportunity Name]) How to add one more condition ?

Hi All

I have below expression at dimension it work fine :-

=if(Match(Year_V,

'2018')

,[Opportunity Name])

I need to add one more condition , that is field name Probability > 0 :-

=if(Match

(Year_V,'2018'),

(Probability,'>0')

,[Opportunity Name])

=if(Match

(Year_V,'2018' Probability,'>0'),

[Opportunity Name])

But it fall to work , can some one advise me where i go wrong ?

Paul

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Try with

=if(Match(Year_V,'2018')>0 and Probability > 0,[Opportunity Name])

But I am not sure you need really this ... try to explain better.

Thanks

View solution in original post

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Try with

=if(Match(Year_V,'2018')>0 and Probability > 0,[Opportunity Name])

But I am not sure you need really this ... try to explain better.

Thanks

paulyeo11
Master
Master
Author

Hi Alessan

Thank you very much.

it work fine.

Paul