Hi, In the previous WNL version, you were able to write equation in an excel format. I am trying to create a column to be able to filter one dose only after a specific time point. Previously, with WNL 5, I would have wrote the below equation: if(and(Dose=X,Time>60),1,0) How do you do it in PHX? It seems the software doesn’t know the AND function. Is it the same issue with the OR statement?
If it’s a column transformation: if(Dose=X,if(time>60,1,0),0) if it’s a PML model: (Dose==X)&&(Time>60) or (Dose==X)&&(t>60)