Forum Discussion
Splitair85
Jul 24, 2024Copper Contributor
Power query apply formula to mixed data column
Hi I imported a table of students marks, and the columns have either marks written or 'Absent'. Now I want to create another custom function column with 50% of the marks. But if I input the form...
m_tarler
Jul 24, 2024Bronze Contributor
=IF(ISNUMBER(A:A), 0.5*A:A, A:A)