Hi Nithin,
For example, to replace null or blank values of postal code, I'm replacing the values using ISBLANK().
Create a column as below
Column = IF(ISBLANK(Orders[Postal Code]),"NO Entry",Orders[Postal Code]).
Then the blank or null values would be replaced.
Hope it helps.