function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ram @SFDCram @SFDC 

how to navigate a custom link to the record types page for new record creation

<li><apex:outputLink value="{!URLFOR($Action.Account.New, 0127F000000K0EU)}" >New Account</apex:outputLink></li>

i am using this link for creating a new account. but it is skipping record type selection. How it will navigate to the record type selection page and it should work in both classic and lightning.
Akshay_DhimanAkshay_Dhiman
Hi Ram,

try this code,
 
<ul> 
 <li> <apex:outputLink value="{! URLFOR($Action.Account.New, a.Id)}"> new Account </apex:outputLink> </li>
 </ul>

If you found this answer helpful then please mark it as best answer so it can help others.   
  
  Thanks 
  Akshay​