Name postion - "First Name", "Last Name"

@Nielsen,
We assume you are looking into Patient Finder screen which displays the name in the format “Lastname, Firstname” and you need to modify as “Firstname, Lastname”

For above scenario, tweak the line (approx:216) as below in the file : interface/main/finder/dynamic_finder_ajax.php

if ($colname == ‘name’) {
$name = $row[‘fname’];
if ($name && $row[‘lname’]) {
$name .= ', ';
}
if ($row[‘lname’]) {
$name .= $row[‘lname’];
}

Name Display Change in Calendar

You can use existing option available in Administration → Globals - > Calendar → Appointment Display Style

Thanks,
ViSolve-120