Tushar Patel Posted August 19, 2019 Share Posted August 19, 2019 I have table like this. And I want to change the values in column C like this: If ColumnA = Column B then Column C = "[Column C]/2" . How can I do this Column A Column B Column C A A 100 B A 50 C C 80 Link to comment Share on other sites More sharing options...
Richard Pobi Posted August 20, 2019 Share Posted August 20, 2019 If([Column A]="A",If([Column B]="A",0,[Column C] / 2),0) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now