Tuesday, May 16, 2023

Generate emaill address using another column

 =IF(C2="",CONCATENATE(B2,"@","domain.com"),C2)



No comments:

Post a Comment

SQL to delete all WooCommerce products except those with "draft" status

 -- Disable foreign key checks (important for InnoDB) SET     FOREIGN_KEY_CHECKS = 0;     -- Delete product meta DELETE     pm FROM     wp_p...