Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8926323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:56:46+00:00 2026-06-15T07:56:46+00:00

I need to process an excel file where the alpha symbol(α) has been entered

  • 0

I need to process an excel file where the alpha symbol(α) has been entered as an “a” character to which the symbol font has been applied.

When exporting the file, formatting is lost and there is no more distinction between α and a.

Is is possible using VBA to replace “a”s that have a symbol formatting into the α symbol?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T07:56:48+00:00Added an answer on June 15, 2026 at 7:56 am
    Public Sub ReplaceAlpha(ByVal Where As Range)
      With Application.FindFormat
        .Clear
        .Font.Name = "Symbol"
      End With
    
      With Application.ReplaceFormat
        .Clear
        .Font.Name = "Arial"
      End With
    
      Where.Replace What:="a", Replacement:=ChrW$(&H251), LookAt:=xlPart, SearchFormat:=True, ReplaceFormat:=True
    End Sub
    

    This will not find alphas that are inside a differently formatted string though.
    If you have those, you will need something like

    Public Sub ReplaceAlpha(ByVal Where As Range)
    
      Dim cur_cell As Range
    
      For Each cur_cell In Where
        Dim i As Long
        For i = 1 To Len(cur_cell.Value)
          With cur_cell.Characters(i, 1)
            If .Text = "a" Then
              If .Font.Name = "Symbol" Then
                .Text = ChrW$(&H251)
                .Font.Name = "Arial"
              End If
            End If
          End With
        Next
      Next
    
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Excel file that I need to process three times in integration
I am trying to create a macro for an Excel file which has a
I'm working on a project in which I need to process a huge amount
I have a excel file which contains 5 sheets in it. The 1st sheet
I'm writing an application, which accesses Excel file with this code: RBTApplication = new
I currently has an Excel file with one column for ItemID and one column
i need to copy a set of data from one excel file to another
Basically I need to insert a bunch of data to an Excel file. Creating
I need to process URLs with JS and find out if they belong to
I need to process a large number of files in a directory. The files

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.