My data frame is:
`Account id Fcast 1 Fcast 2 Fcast 3 Diff 1 Diff 2 Diff 3
101 4000 2000 1000 1000 3000 4000
201 2900 3300 5000 100 300 2000
301 -100 5500 -800 1700 7300 1000
401 5000 8000 7100 2500 500 400
501 9000 12000 2000 15000 12000 22000
Result required is to find out minimum value from the column labeled as Diff...
`Account id Min
101 1000
201 100
301 1000
401 400
501 12000
Also ideally i also need to fetch another column which tells is filled by column name from which the minimum value is fetched.