79644905

Date: 2025-05-30 04:43:03
Score: 2.5
Natty:
Report link

No need to overcomplicate things. There are two simple ways. Use the functions below

  1. =LOWER( A1 & "." & B1 & "@test" )
  2. =LOWER( CONCAT( A1, ".", B1, "@test" ) ) if older version =LOWER( CONCATENATE( A1, ".", B1, "@test" ) )

results

enter image description here

enter image description here

Whith these you can do this simply

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Vinuka Osura