Worksheet contains the following:

Cell MH91 will contain a number that will change. This number can be zero or greater.
Cells MG75:MG90 will contain either an "x" or be blank.
Cells MH75:MJ90 will have values (some are text and some are numbers)

I'd like to accomplish the following using VBA:

IF MH91>0, set the values in P75:P90 to the values in the corresponding rows of MH75:MH90, but only for the rows where there is an "x" in the corresponding row in column MG
ELSE set P75:P90 to blank cells, but only for the rows where there is an "x" in the corresponding row in column MG

IF MH91>0, set the values in V75:V90 to the values in the corresponding rows of MI75:MI90, but only for the rows where there is an "x" in the corresponding row in column MG
ELSE set V75:V90 to blank cells, but only for the rows where there is an "x" in the corresponding row in column MG

IF MH91>0, set the values in X75:X90 to the values in the corresponding rows of MJ75:MJ90, but only for the rows where there is an "x" in the corresponding row in column MG
ELSE set X75:X90 to blank cells, but only for the rows where there is an "x" in the corresponding row in column MG

Thanks!