Hi there. I have a table like this. It has columns in names of months that serve as a sparse matrix. What I plan to do is for each row, I need to find the column with its name equals the value of [FCST_Month] and see if it's value is null. For example, for row #1 I want to check column [May] and see if the value is null or not. Does anyone know how to do that? I don't know how to access the column name. Thanks in advance!
| # | FCST_Month | May | June | July | August |
| 1 | May | Null | 200 | Null | 100 |
| 2 | June | Null | 200 | Null | 100 |
| 3 | July | Null | Null | Null | Null |
| 4 | August | Null | Null | Null | Null |
Thanks,
Yiying