I want to import an excel file into a dataframe. My dataframe (without the excel calculations) looks like this:
| Jan | Feb | Mar | Apr | KPI (IF(SUM(JAN:APR)<0;0);SUM(JAN:APR)) |
|---|---|---|---|---|
| 5 | -25 | -20 | 5 | 0 |
| 15 | 24 | 11 | -20 | 30 |
What is the best way to calculate the "KPI" column rowwise?