Some simple tasks are much faster and simpler in pandas than in Excel.
For example: return values that meet some criteria based in other columns.
If we want to list all the basins with area greater than 100ha, a simple code will do.
Assuming we had copied this table from excel:
import pandas as pd
df0=pd.read_clipboard()
df0[df0.iloc[:,-1]>100].to_clipboard()
This code will put the result in the clipboard, to paste back into Excel (for ex.).