How to create filters for multiple projects

Hi @Danilomz ,
The solution works only for single select fields and depends on your Issue hierarchy. If it is Epic hierarchy, then the solution would be to add this code to eazyBI advanced settings:

[jira.customfield_NNNNN_e]
name = "Epic custom field name" 
data_type = "string"
dimension = true
update_from_issue_key = "epic_key"
javascript_code = '''
if(issue.fields.customfield_NNNNN ) {
   issue.fields.customfield_NNNNN_e = issue.fields.customfield_NNNNN;
}
'''
  1. Where NNNNN is your Parent custom field ID
  2. And update_from_issue_key identifies that the value is passed to epic children. If you are using, e.g., Advanced Roadmap (previously Portfolio) then you may want to see this solution on how to get the level:

best,
Gerda