Posts

Excel VBA

 Sub Step1()     Sheets.Add(After:=ActiveSheet).Name = "NewDATASHEET"     Sheets("DATASHEET").Select     ActiveWindow.FreezePanes = True     Columns("A:C").Select     Application.CutCopyMode = False     Selection.Copy     Sheets("NewDATASHEET").Select     ActiveSheet.Paste     Range("D1").Select     Application.CutCopyMode = False     ActiveCell.FormulaR1C1 = "Title"     Range("E1").Select     ActiveCell.FormulaR1C1 = "Content"     Range("D2").Select     Application.CutCopyMode = False     ActiveCell.FormulaR1C1 = "=CONCAT(RC[-3],""|"",RC[-2])"     Selection.AutoFill Destination:=Range("D2:D8000")     Range("E2").Select     Application.CutCopyMode = False     ActiveCell.FormulaR1C1 = "=StringToBase64(RC[-2])"     Selection.AutoFill Destination:=Range("E2:E8000")    ...

Salesforce Development Standards - 1

Naming conventions is very important element in developing a code. Naming convention will make code readable and understandable for others to read your code. always try to prefix the datatype to the variable. always a best practice to use camel case.  Below are some salesforce standard naming conventions Example:  String strMyVariable Integer intIndividual Double dblTotal Date datStartDate Map<String, String> mapDataset  List<Account> lstAccounts Set<String> setStrings I will meet you guys on my next blog until then bye  Ganesh Solai known is a drop unknown is an ocean (Note: This blog is for salesforce developer newbie's. I am going talk about salesforce development basic every newbie should learn and understand. ) --------------------------------------------------------------------------------------------------------------------------