27. Februar 2014 14:00
=iif(Fields!BinMandatory.Value and (not Fields!InvtPick.Value),false,true)
or iif(Fields!LineNo_WhseActLine.Value=previous(Fields!LineNo_WhseActLine.Value)
and Fields!No_WhseActivHeader.Value=previous(Fields!No_WhseActivHeader.Value),true,false)
=iif(Fields!ActionType_WhseActLine.Value = "Lagerentnahme",false,true)
27. Februar 2014 21:33
stony hat geschrieben:ich möche hier nur Zeile anzeigen, welche als Action Type "Lagerentnahme" haben.
28. Februar 2014 20:04
3. März 2014 09:39
=iif(Fields!BinMandatory.Value and (not Fields!InvtPick.Value),false,true) and Fields!ActionType_WhseActLine.Value <> "Lagerentnahme"
or iif(Fields!LineNo_WhseActLine.Value=previous(Fields!LineNo_WhseActLine.Value)
and Fields!No_WhseActivHeader.Value=previous(Fields!No_WhseActivHeader.Value),true,false) and Fields!ActionType_WhseActLine.Value <> "Lagerentnahme"
3. März 2014 10:10
- Code:
=iif(Fields!BinMandatory.Value and (not Fields!InvtPick.Value),false,true) and Fields!ActionType_WhseActLine.Value <> "Lagerentnahme"
or iif(Fields!LineNo_WhseActLine.Value=previous(Fields!LineNo_WhseActLine.Value)
and Fields!No_WhseActivHeader.Value=previous(Fields!No_WhseActivHeader.Value),true,false) and Fields!ActionType_WhseActLine.Value <> "Lagerentnahme"
könnte das funktionieren?