I'm wondering if it's possible to suppress footers if the page has a footnote, but display the footer as normal otherwise. To be specific, I'm reproducing an old book which uses catchwords for pages without footnotes, so I am using the \NextWordBox macro from the fwlw package inside my footer. Thanks all and have a great Christmas.
EDIT: The solution provided by ADP works except for cases where the word with the footnote is the first word of a page, in which case the previous page style is reset instead of the page with the footnote. Here's a MWE.
\documentclass[14pt,twoside,openright]{memoir}
\usepackage[symbol,perpage]{footmisc}
\usepackage{fwlw}
\makepagestyle{fn} %defines style when footnote is present
\makeevenhead{fn}{\thepage}{THE TWO NEW SCIENCES OF GALILEO}{}
\makeoddhead{fn}{}{\leftmark}{\thepage}
\makeoddfoot{fn}{}{}{}
\makeevenfoot{fn}{}{}{}
\makepagestyle{standard} %defines headings
\makeevenhead{standard}{\thepage}{THE TWO NEW SCIENCES OF GALILEO}{}
\makeoddhead{standard}{}{\leftmark}{\thepage}
\makeoddfoot{standard}{}{}{\usebox\NextWordBox}
\makeevenfoot{standard}{}{}{\usebox\NextWordBox}
\pagestyle{standard}
\newcommand{\myfootnote}[1]{%
\footnote{#1}%
\thispagestyle{fn}%change pagestyle for this page only.
}
\begin{document}
This is a sentence.
\newpage
This is another sentence.\myfootnote{This is a footnote}
\newpage
This is yet another sentence.
\end{document}

