Hi community, I'm want to make a report with RMarkdown but when make click in the table don't going to the exactly field, only run well for the first sheet.
For example, if I'm put click in FIELD F
is necessary go to ZONE 3
and show the part of FIELD F
.
This is my code in RMarkdown
---
title: "test"
author: "M.Acosta"
date: "`r Sys.Date()`"
output:
html_document:
theme: united
highlight: tango
toc: true
number_sections: false
toc_depth: 5
code_folding: hide
toc_float:
collapsed: true
smooth_scroll: true
---
knitr::opts_chunk$set(echo = TRUE)
# SURVEY {.tabset .tabset-fade .tabset-pills}
## ZONE 1
### FIELD A
#SCRIPT
### FIELD B
## ZONE 2
### FIELD C
### FIELD D
## ZONE 3
### FIELD E
### FIELD F
All code in a image:
Tnks!