Batch file conversion - title and artist only

I need to know how to do a batch file conversion that will omit everything except the title followed by the artist.
Below is an example of one of many files that I want to convert to “title”, “artist”.
Example: J. Andrew Smith ~ Normal Kind ~ 16 Album (HQ Audio)
After the file conversion: Normal Kind – J. Andrew Smith (title – artist)
Thanks!

Have you got "Normal Kind" in the field TITLE and "J. Andrew Smith" in the field ARTIST?
Then you could use Convert>Tag-Filename with
Format string: %title% - %artist%

Thank you!
I believe I knew that already, but was having a mental block.
Is there a way to do it for more than one file at a time?

As long as all files have filled those fields (ARTIST and TITLE) with the corresponding data, then you will get a valid filename with the described function.
If you are not sure, filter for the presence of the fields:
%artist% PRESENT AND %title% PRESENT
and rename only the files that are then displayed in the file list.
To execute the function, select all the files that should be renamed with the given format string, then call Convert>Tag-Filename.

Got it! Thank you!!!!!!