Is there a way to manually update the company scores?
I have a list of companies that I want to import with scores already set, but I can’t find a way to do it on import.
Can anyone advise?
Is there a way to manually update the company scores?
I have a list of companies that I want to import with scores already set, but I can’t find a way to do it on import.
Can anyone advise?
I just tested this on Mautic 4, was a bit surprised that score was not in the import.
Anyway the best I can say now is. You can adjust the score by executing direct SQL statement against database, something like:
UPDATE companies
SET score = 50
WHERE companyname = 'MyCompany':
Best, M.