我有一个带有值列表的电子表格,我试图确定高于某个阈值的计数。使用countif,我可以在13.5%的阈值中进行硬编码......
threshold: 13.50%
count above: 5
# Score
1 13.06%
2 15.20%
3 16.39%
4 17.61%
5 18.11%
6 16.49%
7 13.43%
8 11.60%
9 10.69%
10 9.04%
=countif(B6:B15,">13.5%")
产生所需的输出6。
如何将单元格C1作为我的阈值,而不是在>" 13.5%"中引用硬编码? ?
答案 0 :(得分:1)
您只需移动引号并添加&符号即可。类似的东西:
export function selectBook(ISBN) {
const url = `${ROOT_ITEMS_URL}/${ISBN}?all=true`;
return dispatch => {
dispatch({ type: 'SELECT_BOOK_LOADING', isLoading:true });
axios.get(url)
.then(({ data }) => dispatch({ type: 'SELECT_BOOK_SUCCESS', data}))
.catch(( err ) => dispatch({ type: 'SELECT_BOOK_FAILURE', isLoading:false}))
}
}
应该有效。