thanks for your help. I can not find a solution to a problem which should be really easy to solve:
Starting with a DataFrame like this:
print(df)
Column A Column B Column C
Row 1 1 3 3
Row 2 2 4 6
Row 3 3 5 7
Row 4 nan 3 nan
I am trying to find values which can be found in every column. In this example, that would be value "3" because it can be found in columns A to C.
Thanks in advance for your help! I am just not able to find a solution.