Forum Discussion
vykvykvyk
Jan 10, 2024Copper Contributor
(Help) How do I leave just one value per contract?
So, I have a table of contracts and each contract has its own value, but the same contract can have multiple guarantees. However, the contract value repeats for each type of guarantee, meaning that t...
- Jan 10, 2024
=IF(COUNTIF($A$2:A2,A2)=1,B2,"")
I'd apply this formula in order to return the contract value only once for each contract. The table on the right in your screenshot seems as if there are merged cells which you should always avoid working with since merged cells cause problems.
OliverScheurich
Jan 10, 2024Gold Contributor
=IF(COUNTIF($A$2:A2,A2)=1,B2,"")
I'd apply this formula in order to return the contract value only once for each contract. The table on the right in your screenshot seems as if there are merged cells which you should always avoid working with since merged cells cause problems.
vykvykvyk
Jan 11, 2024Copper Contributor
OliverScheurich thank you so much for the quick response, it works!