Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I am trying to build a text-string that CONCATENATES every if-statement which leads to a result as follows:
// Customer no more online
if([Online % Pos.VJ]>0 and [Online % Pos.]<=0
,'Customer no more online'
,
// Customer online activated
if([Online % Pos.VJ]<=0 and [Online % Pos.]>0
,'Customer online activated'
,
// Less Positions online
if([Differenz Pos.]<0
,'Less Positions online'
,
// EDI-interface no more working
if([EDIUmsatz]<=0 and [EDIUmsatzVJ]>0
,'EDI-interface no more working'
,''))))
Please show me a way to rebuild this formula so that there will be a text-string like "EDI-Interface no more working, customer no more online". Currently only one single result of each is being shown.
Optional: I would also like to add a function where the person who sees the "recommendation text" can just switch it off and write a comment on it. Do you have an idea how to do that?
Thanks a bunch!
Nes
Try this :
=if([Online % Pos.VJ]>0 and [Online % Pos.]<=0 ,'Customer no more online')&','& if([Online % Pos.VJ]<=0 and [Online % Pos.]>0 ,'Customer online activated')&',' & if([Differenz Pos.]<0 ,'Less Positions online')&',' & if([EDIUmsatz]<=0 and [EDIUmsatzVJ]>0 ,'EDI-interface no more working')
Try this :
=if([Online % Pos.VJ]>0 and [Online % Pos.]<=0 ,'Customer no more online')&','& if([Online % Pos.VJ]<=0 and [Online % Pos.]>0 ,'Customer online activated')&',' & if([Differenz Pos.]<0 ,'Less Positions online')&',' & if([EDIUmsatz]<=0 and [EDIUmsatzVJ]>0 ,'EDI-interface no more working')
You can may be look into making it an Inputfield