Lamda char code is 03BB I can't figure out how to add it in VBA for Excel. Please help Thanks!
Feb 20th 2005 #1 Lamda char code is 03BBI can't figure out how to add it in VBA for Excel.Please helpThanks!
Feb 21st 2005 #2 Re: Lamda symbolHi Elaine and welcome,Try this code snippet. Code Sub x() ActiveCell.Value = ChrW(&H39B) ' Greek capital letter Lamda ActiveCell.Offset(1, 0).Value = ChrW(&H3BB) ' Greek small letter lamda End Sub