WordPress Shortcode callback function with a plugin

Rick’s answer is incorrect, as the documentation for add_shortcode specifies that “the function called by the shortcode should never produce an output of any kind”. Instead, you should return the text that you want the shortcode to output. So, try having display_sheet_form return that text instead of echoing it.